Search documentation
karat

+

K

User Documentation ↗

Unlink track from object

POST/api/gotham/v1/tracks/unlinkFromObject
Warning

This endpoint is in preview and may be modified or removed at any time. To use this endpoint, add preview=true to the request query parameters.

Unlinks a Geotime Track from an Object, by ensuring that we remove any "pointers" between the Track and Object

Query parameters

preview
boolean
optional

Represents a boolean value that restricts an endpoint to preview mode when set to true.

Request body

UnlinkTrackAndObjectRequest
object

A request to unlink a Geotime Track from an Object

Hide children

Hide children

trackRid
string

Globally unique identifier for a Geotime Track. This is synonymous with a Gotham Identifier and contains information like SourceSystemId, CollectionId, SpecId and TrackId.

objectRid
string

Globally unique identifier for an Object Rid.

Response body

EmptySuccessResponse
object

A successful response means that the Track has been unlinked from the Object.

Examples

Request

Copied!
1 2 3 4 5 curl -X POST \ -H "Content-type: application/json" \ -H "Authorization: Bearer $TOKEN" \ "https://$HOSTNAME/api/gotham/v1/tracks/unlinkFromObject?preview=true" \ -d '[{"trackRid":"ri.gotham.1-1.geotime-track.foo.bar.baz.track0","objectRid":"ri.gotham.1-1.object.someString"}]'