POST
/
api
/
service
/
payout
/
list
curl --request POST \
  --url https://api.sand.getivy.de/api/service/payout/list \
  --header 'Content-Type: application/json' \
  --header 'X-Ivy-Api-Key: <api-key>' \
  --data '{
  "limit": 123,
  "skip": 123
}'
{
  "items": [
    {
      "id": "<string>",
      "destination": {
        "type": "<string>",
        "iban": {
          "iban": "<string>",
          "bic": "<string>",
          "accountHolderName": "<string>"
        },
        "sortCode": {
          "sortCode": "<string>",
          "accountNumber": "<string>",
          "accountHolderName": "<string>"
        },
        "bankCode": {
          "code": "<string>",
          "accountNumber": "<string>",
          "accountHolderName": "<string>"
        },
        "bban": {
          "bban": "<string>",
          "accountHolderName": "<string>",
          "bic": "<string>"
        }
      },
      "status": "paid",
      "amount": 123,
      "currency": "EUR",
      "metadata": {},
      "updatedAt": "2023-11-07T05:31:56Z",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "skip": 123,
  "count": 123,
  "hasNext": true
}

Authorizations

X-Ivy-Api-Key
string
header
required

Body

application/json
limit
number

The number of items to retrieve

skip
number

The number of items to skip

Response

200 - application/json
Returns a list of Customer Payouts
items
object[]
required
skip
number
required

The number of items skipped

count
number
required

The total number of items

hasNext
boolean
required

Whether there are more items to retrieve