Getting Started
Capabilities
Payout Report
Charge
Banking
Customer
Retrieve a Customer
Retrieve a Customer Object by its id.
POST
/
api
/
service
/
customer
/
retrieve
Copy
Ask AI
curl --request POST \
--url https://api.sand.getivy.de/api/service/customer/retrieve \
--header 'Content-Type: application/json' \
--header 'X-Ivy-Api-Key: <api-key>' \
--data '{
"id": "<string>"
}'
Copy
Ask AI
{
"id": "<string>",
"emailAddress": "<string>",
"bankAccounts": [
{
"last4digits": "<string>",
"bank": {
"id": "<string>",
"logo": "<string>",
"name": "<string>"
}
}
]
}
Authorizations
API key for authentication
Body
application/json
Response
200 - application/json
Successful response
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://api.sand.getivy.de/api/service/customer/retrieve \
--header 'Content-Type: application/json' \
--header 'X-Ivy-Api-Key: <api-key>' \
--data '{
"id": "<string>"
}'
Copy
Ask AI
{
"id": "<string>",
"emailAddress": "<string>",
"bankAccounts": [
{
"last4digits": "<string>",
"bank": {
"id": "<string>",
"logo": "<string>",
"name": "<string>"
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.