`400` |
Bad Request |
Incorrectly formatted request parameters (request parameters do not follow expected schema and fail validation) |
Ensure all request parameters are correctly formatted and try again.
* Verify that the endpoint URL is correct.
* Ensure the request body is well-formed and all required parameters are included.
|
`401` |
Unauthorized |
Invalid API key or access token. |
Double-check your credentials and ensure they're valid. |
`403` |
Forbidden |
StackOne API key provided or linked account token lacks required permissions or the linked account tokens |
Verify the scopes of your API token and request necessary permissions. |
`404` |
Not Found |
The requested resource doesn't exist, possibly due to an invalid ID. |
Double-check the resource IDs in your request and ensure they are valid. |
`408` |
Request Timed Out |
The request took too long to complete (>60 seconds) and has been aborted - this could be due to provider rate limits. |
Respect received `Retry-After` headers to alleviate pressure on provider systems and avoid concurrent requests to the unified API. |
`409` |
Conflict |
The resource to be created already exists |
Check that the resource doesn't already exist before creating it. |
`412` |
Precondition Failed |
Endpoints using `x-account-id` may return `412` if the linked account is disabled. |
Check the status of the linked account and enable it if necessary. |
`422` |
Unprocessable Entity |
The payload data for creating a resource doesn't match what the endpoints expect |
Verify that the data sent follows the StackOne API reference. Look at the additional details if available in `provider_errors` for any additional information from the provider. |
`429` |
Too Many Requests |
Rate limits exceeded. Can be returned by the underlying provider or StackOne. |
Implement exponential backoff for retries and ensure your requests are within rate limits. See [Rate Limiting](/guides/rate-limiting) for more information. |
`500` |
Server Error |
Internal StackOne server issue. |
Notify StackOne support if the issue persists. |
`501` |
Not Implemented |
This endpoint hasn't been implemented for this connected provider |
Skip the call or contact StackOne support for more information. View endpoint support via the Meta endpoint. |
`502` |
Bad Gateway |
The underlying Provider API has returned a 500 error |
Read any additional details available in the response data and ensure the resource exists. |