Skip to main content
DELETE
/
connections
Delete Connection
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": "example-id-123",
  "object": "connection",
  "deleted": true
}

Headers

x-trackstar-api-key
string
required

Your organization-level Trackstar API key.

Example:

"<x-trackstar-api-key>"

x-trackstar-access-token
string
required

Your user's access token for a specific integration (ShipHero, Extensiv, etc).

Example:

"<x-trackstar-access-token>"

Response

Successful response

id
string
required

The id of the deleted object.

Example:

"example-id-123"

object
string
required

The type of the object that was deleted.

Example:

"connection"

deleted
boolean
required

Whether or not the object was deleted.

Example:

true

I