Difference between revisions of "API Delete Marker"
IVSWikiBlue (talk | contribs) (Created page with "This API call will delete an existing room. ===Resource URL=== <pre>http://valt.example.com/api/v3/records/{recordid}/markers/{markerid}/delete</pre> ''Replace {recordid} wit...") |
IVSWikiBlue (talk | contribs) |
||
| Line 43: | Line 43: | ||
==Examples== | ==Examples== | ||
===Request=== | ===Request=== | ||
| − | <pre>https://ivstest1.ad.ipivs.com/api/v3/records/616/markers/41/delete?access_token= | + | <pre>https://ivstest1.ad.ipivs.com/api/v3/records/616/markers/41/delete?access_token=exampletoken</pre> |
===Successful Response=== | ===Successful Response=== | ||
Latest revision as of 15:35, 18 September 2026
This API call will delete an existing room.
Contents
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
}
}