Skip to main content
POST
/
v3
/
api
/
interchange
/
settlement
/
transactions
Whitelist senders for settlement transactions
curl --request POST \
  --url https://api.custody.api-zodia.io/v3/api/interchange/settlement/transactions \
  --header 'Content-Type: application/json' \
  --header 'X-Signature: <api-key>' \
  --data '
{
  "transactionsHash": [
    [
      "4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b",
      "0x0000000000000000000000000000000000000000"
    ]
  ]
}
'
{
  "whitelisted": [
    "4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b"
  ],
  "notProcessed": [
    "0x0000000000000000000000000000000000000000"
  ]
}

Authorizations

X-Signature
string
header
required

Body

application/json
transactionsHash
string[]

Transaction hashes whose senders need to be whitelisted

Response

OK

whitelisted
string[]
required

Transaction references whose senders have been whitelisted.

notProcessed
string[]
required

Transaction references whose senders were not whitelisted. Can be retried with a subsequent call.