Test Connection
POST/api/integrations/17track/test
Validate a 17TRACK API key WITHOUT persisting an instance — powers the connect-modal Test Connection button.
Any valid API token can call this endpoint — no specific scope required. Manage tokens.
Under the hood the supplied key is sent to 17TRACK's /getquota endpoint; the response reports the quota so the UI can warn before connecting.
Required Fields:
api_key— 17TRACK API key (string, 8–255 chars)
Responses:
200 OK— key is valid, returns the live quota422 Unprocessable Entitywithcode: invalid_key— 17TRACK rejected the key (auth error)422 Unprocessable Entitywithcode: api_error— 17TRACK API returned a non-auth error (rate-limited, upstream failure, etc.)
Request
Responses
- 200
- 401
- 403
- 422
- 429
OK
Response Headers
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Unprocessable Entity
Response Headers
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.