Getting Started
Capabilities
Payout Report
Charge
Banking
Customer
Search Customers
Search for customers you have previously created using filters, e.g. by email.
POST
/
api
/
service
/
customer
/
search
Copy
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": 1,
"skip": 1
}'
Copy
{
"items": [
{
"id": "<string>",
"emailAddress": "<string>",
"bankAccounts": [
{
"last4digits": "<string>",
"bank": {
"id": "<string>",
"logo": "<string>",
"name": "<string>"
}
}
]
}
],
"count": 123,
"skip": 123,
"hasNext": true
}
Authorizations
API key for authentication
Body
application/json
Response
200 - application/json
Successful response
The response is of type object
.
Copy
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": 1,
"skip": 1
}'
Copy
{
"items": [
{
"id": "<string>",
"emailAddress": "<string>",
"bankAccounts": [
{
"last4digits": "<string>",
"bank": {
"id": "<string>",
"logo": "<string>",
"name": "<string>"
}
}
]
}
],
"count": 123,
"skip": 123,
"hasNext": true
}
Assistant
Responses are generated using AI and may contain mistakes.