GET /api/v1/enterprise/eudr/credentials/traces/status
Request Parameters
This endpoint requires no request body and accepts no query parameters. Authentication is performed via your enterprise API key.Code Examples
Response
A200 OK response is returned regardless of whether the delegation check passes or fails — use the valid field to determine the actual connection state. A false value with an explanatory message indicates you should re-ingest your credentials or contact your TRACES NT account administrator.
true if the stored credentials successfully authenticated against the TRACES NT SOAP API; false if the connection test failed (for example, due to an expired token, incorrect password, or account suspension).A human-readable status or error message returned by the TRACES NT client during the connection test. On success this is typically
"Connected to TRACES NT SOAP API". On failure it will contain the SOAP fault or authentication error detail.The TRACES NT username associated with the stored credentials, if one was provided at ingestion time. Returns
null if a token-only credential was ingested without a username.The UTC timestamp of the most recent connection validation check, formatted as an ISO 8601 date-time string. This reflects when this specific status check was executed.
Error Responses
| HTTP Status | Error Code | Description |
|---|---|---|
401 Unauthorized | UNAUTHORIZED | The Authorization header is absent or the bearer token is not recognised. |
403 Forbidden | FORBIDDEN | Your API key does not have the required scope to read credential delegation status. |
404 Not Found | NOT_FOUND | No TRACES NT credentials have been ingested for this organization yet. Call the Ingest Credentials endpoint first. |
429 Too Many Requests | RATE_LIMITED | You have exceeded the hourly rate limit. Check X-RateLimit-Reset for your reset time. |