POST/api/user/transfersapplication/jsonapi_token| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
x-api-key | string | Sim | Token de autenticação API Key |
User-Agent | AtivoB2B/1.0 | Sim |
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
amount | number | Sim | Valor a ser transferido em centavos ou na unidade monetária definida. |
method | string | Sim | Método da transferência: PIX ou BANK_TRANSFER. |
curl --location --request POST '/api/user/transfers' \
--header 'x-api-key: {Token}' \
--header 'User-Agent: AtivoB2B/1.0' \
--header 'Content-Type: application/json' \
--data-raw '{
"amount": 100,
"method": "PIX"
}'{
"message": "Transferência realizada com sucesso.",
"data": {
"transfer": [
{
"id": "********-****-****-****-************",
"amount": 500,
"type": "PIX",
"status": "INPROCESS",
"fee": 0,
"externalRef": null,
"pixKey": "*************",
"paidAt": null,
"typePayment": null,
"refundedAmount": 0,
"description": null,
"receiptUrl": null,
"endToEndId": null,
"error": null,
"payeeId": null,
"sellerId": "********-****-****-****-************",
"gatewayId": "********-****-****-****-************",
"subAccountId": null,
"createdAt": "2025-04-16T17:46:32.084Z",
"updatedAt": "2025-04-16T17:46:32.135Z"
}
]
},
"status": 200,
"error": null
}