Skip to content
AchaduDevelopers
Operational APIGo to website
Dashboard
Developers/API/commission_imports
Commissions

List commission imports

List import receipts without including credentials.

GET/commissions/importscommissions:read
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

The operation is safe to repeat. On 429 or 5xx, use exponential backoff with jitter.

Request

limitinteger · queryQuantity per page.min 1 · max 100 · default 30optional
offsetinteger · queryPagination offset.min 0 · default 0optional
AuthorizationBearer ach_live_...
Acceptapplication/json
Scopecommissions:read

Executable example

curl
curl 'https://achadu.com/api/v1/commissions/imports' \
  -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": [
    {
      "id": "com_01J...",
      "marketplace": "amazon",
      "amount": 24.73,
      "currency": "BRL",
      "status": "approved",
      "order_id": "ORDER-123",
      "occurred_at": "2026-08-31T18:20:00.000Z"
    }
  ],
  "pagination": {
    "total": 1,
    "limit": 30,
    "offset": 0,
    "has_more": false
  },
  "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 commissions:read.
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.