cURL
curl --request POST \ --url https://api.conta.paybeehive.com.br/v1/customers \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "name": "Bruce Wayne", "email": "[email protected]", "document": { "number": "12345678909", "type": "cpf" }, "externalRef": "cust_ext_001", "phone": "+5511999999999", "birthdate": "1990-01-01", "address": { "street": "Av. Brigadeiro Faria Lima", "number": "1811", "complement": "Conj 1119", "neighborhood": "Itaim Bibi", "city": "São Paulo", "state": "SP", "zipcode": "01452001", "country": "BR" } } '
{ "name": "Bruce Wayne", "email": "[email protected]", "document": { "number": "12345678909", "type": "cpf" }, "externalRef": "cust_ext_001", "phone": "+5511999999999", "birthdate": "1990-01-01", "address": { "street": "Av. Brigadeiro Faria Lima", "number": "1811", "complement": "Conj 1119", "neighborhood": "Itaim Bibi", "city": "São Paulo", "state": "SP", "zipcode": "01452001", "country": "BR" }, "id": 123, "createdAt": "2026-01-04T12:00:00Z" }
Basic Authorization usando SECRET_KEY como usuário e "x" como senha.
Chave de idempotência para evitar duplicidade em retries.
"Bruce Wayne"
"[email protected]"
Show child attributes
"cust_ext_001"
"+5511999999999"
"1990-01-01"
Cliente criado
123
"2026-01-04T12:00:00Z"