split-receivers partial update
Requisição
Adicionar o parâmetro Authorization
a Cabeçalhos, cujo valor é concatenar o Token após o Bearer. Exemplo:Authorization: Bearer ********************
Parâmetros Bodyapplication/json
{
"name": "<string>",
"tax_id": "<string>",
"bank_code": "<string>",
"branch_code": "<string>",
"account_number": "<string>",
"account_type": "savings",
"account_id": "<uuid>"
}
Códigos de solicitação
curl --location --request PATCH '/split-receivers/<uuid>/' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "<string>",
"tax_id": "<string>",
"bank_code": "<string>",
"branch_code": "<string>",
"account_number": "<string>",
"account_type": "savings",
"account_id": "<uuid>"
}'
Respostas
application/json {
"name": "<string>",
"tax_id": "<string>",
"id": "<uuid>",
"bank_code": "<string>",
"branch_code": "<string>",
"account_number": "<string>",
"account_type": "prepaid",
"account_id": "<uuid>",
"created_at": "<dateTime>",
"updated_at": "<dateTime>"
}
Modificado em 2025-05-15 20:31:40