API Delete Marker
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=e82632d19c523678fea3d1016c6df9e9
Successful Response
{}
Failure Response
{
"error":{
"code": 404
}
}