Getting Started
Charge
Capabilities
Subaccount
Banking
Customer
Search Customers
Search for customers you have previously created using filters, e.g. by email.
POST
/
api
/
service
/
customer
/
search
curl --request POST \
--url https://api.sand.getivy.de/api/service/customer/search \
--header 'Content-Type: application/json' \
--header 'X-Ivy-Api-Key: <api-key>' \
--data '{
"email": "<string>",
"limit": 123,
"skip": 123
}'
{
"items": [
{
"id": "<string>",
"emailAddress": "<string>",
"bankAccounts": [
{
"last4digits": "<string>",
"bank": {
"id": "<string>",
"name": "<string>",
"logo": "<string>"
}
}
]
}
],
"skip": 123,
"count": 123,
"hasNext": true
}
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/search \
--header 'Content-Type: application/json' \
--header 'X-Ivy-Api-Key: <api-key>' \
--data '{
"email": "<string>",
"limit": 123,
"skip": 123
}'
{
"items": [
{
"id": "<string>",
"emailAddress": "<string>",
"bankAccounts": [
{
"last4digits": "<string>",
"bank": {
"id": "<string>",
"name": "<string>",
"logo": "<string>"
}
}
]
}
],
"skip": 123,
"count": 123,
"hasNext": true
}
Assistant
Responses are generated using AI and may contain mistakes.