Skip to content
AchaduDevelopers
Operational APIGo to website
Dashboard
Developers/API/integration_test
Integrations

Validate integration

Validates the available configuration and records the diagnosis.

POST/integrations/{provider}/testintegrations:write
BEHAVIOR

The request validates the input, persists the command, and returns the initial state. Execution can continue in the dedicated queue.

EFFECT

You can create asynchronous work and webhook events after confirmation in the database.

REPETITION

On network failure, confirm the resource status before retrying. Automatically redo only 429 and 5xx with backoff and jitter.

Request

providerstring · pathConnector identifier.mandatory
AuthorizationBearer ach_live_...
Acceptapplication/json
Scopeintegrations:write

Executable example

curl
curl -X POST 'https://achadu.com/api/v1/integrations/string/test' \
  -H 'Authorization: Bearer ach_live_...' \
  -H 'Accept: application/json'

Response and errors

Every response includes request_id. Lists add pagination; mutable resources return the persisted state after the operation.

200 application/json
{
  "data": {
    "provider": "amazon",
    "valid": true,
    "remote": true,
    "message": "Credential validated at the provider",
    "checked_at": "2026-08-31T18:20:00.000Z"
  },
  "request_id": "req_01J..."
}
200Operation completed.
400Invalid parameter, body or transition.
401Missing, invalid, expired or revoked key.
402The account plan does not release this interface.
403A chave precisa do escopo integrations:write.
404Feature does not exist in this account.
409The current state prevents this operation.
413The JSON body exceeds 128 KB.
429The 120 requests per minute window has been exceeded.