Customer
Retrieve a Customer
Getting Started
Charge
Capabilities
Subaccount
Banking
Customer
Retrieve a Customer
Retrieve a Customer Object by its id.
POST
/
api
/
service
/
customer
/
retrieve
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>"
}'
{
"id": "<string>",
"emailAddress": "<string>",
"bankAccounts": [
{
"last4digits": "<string>",
"bank": {
"id": "<string>",
"name": "<string>",
"logo": "<string>"
}
}
]
}
Authorizations
Body
application/json
Response
200 - application/json
Successful response
The response is of type object
.
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>"
}'
{
"id": "<string>",
"emailAddress": "<string>",
"bankAccounts": [
{
"last4digits": "<string>",
"bank": {
"id": "<string>",
"name": "<string>",
"logo": "<string>"
}
}
]
}