Skip to main content
GET
/
customers
/
{id}
Get customer by Id
curl --request GET \
  --url https://api.market.iventou.com.br/customers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "Arthur Antunes Coimbra",
  "cpf": "77858747002",
  "birthdate": "2023-11-07T05:31:56Z",
  "email": "[email protected]",
  "created_at": "2023-11-07T05:31:56Z",
  "wallet": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "default",
    "balance": 30000,
    "created_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Token from partner authetnication

Path Parameters

id
string
required

Response

200 - application/json

Customer retrieved successfully

id
string<uuid>
required
name
string
required
Minimum length: 3
Example:

"Arthur Antunes Coimbra"

cpf
string<cpf>
required
Example:

"77858747002"

birthdate
string<date-time>
required
email
string<email>
required
created_at
string<date-time>
required
wallet
object