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>",
"logo": "<string>",
"name": "<string>"
}
}
]
}
Retrieve a Customer Object by its id.
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>",
"logo": "<string>",
"name": "<string>"
}
}
]
}
API key for authentication
Successful response
The response is of type object
.