Tikin · Docs
API ReferenceMoneyTransfers

Listar transferencias

GET
/v1/transfers

Para conciliar y para recuperarse de un webhook perdido.

Authorization

tenantToken
AuthorizationBearer <token>

Tu token de tenant: tk_live_…. El entorno sandbox llega pronto; los tokens tk_test_ quedarán reservados para él. Scopes: read, lookup, transfers, bonuses, payouts, webhooks. Usa el mínimo.

In: header

Query Parameters

limit?integer
Range1 <= value <= 100
Default25
cursor?string

El next_cursor de la página anterior.

status?string

pending_approval se resuelve a completed o rejected (otro miembro decide en su app) o expired si nadie decidió a tiempo.

Value in

  • "completed"
  • "pending_approval"
  • "rejected"
  • "expired"
source_account?string
Formatuuid
created_at[gte]?string
Formatdate-time
created_at[lte]?string
Formatdate-time

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/transfers"
{  "items": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "scope": "internal",      "status": "completed",      "source_account": "0b96a69a-83bf-4bb3-9b52-1bfb05c01fa0",      "destination": {        "type": "account",        "account_id": "449e7a5c-69d3-4b8a-aaaf-5c9b713ebc65"      },      "amount": {        "raw": "string",        "asset": "COPM"      },      "fee": {        "raw": "string",        "asset": "COPM"      },      "description": "string",      "created_at": "2019-08-24T14:15:22Z"    }  ],  "next_cursor": "string"}