Criar Cliente
POST
/v1/customers
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1/customers' \
--header 'Content-Type: application/json' \
--data-raw '{
"external_id": "{{$randomInt}}",
"name": "Luke S.",
"type": "individual",
"country": "br",
"documents": [
{
"type": "cpf",
"number": "01234567890"
}
],
"phone_numbers": [
"+5511988774455"
],
"email": "{{$randomEmail}}"
}'
Response Response Example
{}
Requisição
Parâmetros Bodyapplication/json
Respostas
Modificado em 2025-05-26 19:09:20