API Delete Marker

From IVS Wiki
Revision as of 15:35, 18 September 2026 by IVSWikiBlue (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This API call will delete an existing room.

Resource URL

http://valt.example.com/api/v3/records/{recordid}/markers/{markerid}/delete

Replace {recordid} with the actual id number of the record. Records are numbered sequentially when added to VALT.

Replace {markerid} with the actual id number of the marker. Markers are numbered sequentially when added to VALT.

Resource Information

Method POST
Response Type JSON
Authentication Required Yes

Parameters

No parameters are required for this API call.

Response

Code Reason
200 Request Successful
401 Unauthorized
404 Marker Not Found

A blank JSON object is returned upon success.

Examples

Request

https://ivstest1.ad.ipivs.com/api/v3/records/616/markers/41/delete?access_token=exampletoken

Successful Response

{}

Failure Response

{
"error":{
"code": 404
}
}