Authentication
Delete Connection
Deletes the connection associated with your access token.
DELETE
/
connections
Header
curl --request DELETE \
--url https://production.trackstarhq.com/connections \
--header 'x-trackstar-access-token: <x-trackstar-access-token>' \
--header 'x-trackstar-api-key: <x-trackstar-api-key>'
{
"id": "07b344db-0304-4866-9ae1-ac8af5292a28",
"object": "connection",
"deleted": true
}
Headers
x-trackstar-api-key
string
requiredYour organization-level Trackstar API key.
x-trackstar-access-token
string
requiredYour user's access token for a specific integration (ShipHero, Extensiv, etc).
Response
200 - application/json
id
string
requiredThe id of the deleted object.
object
string
requiredThe type of the object that was deleted.
deleted
boolean
requiredWhether or not the object was deleted.
curl --request DELETE \
--url https://production.trackstarhq.com/connections \
--header 'x-trackstar-access-token: <x-trackstar-access-token>' \
--header 'x-trackstar-api-key: <x-trackstar-api-key>'
{
"id": "07b344db-0304-4866-9ae1-ac8af5292a28",
"object": "connection",
"deleted": true
}