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

X-Ivy-Api-Key
string
header
required

Body

application/json

Response

200 - application/json

Successful response

The response is of type object.