Fetch customer recipient list
GET
/v3/customers/{merchantCustomerId}/withdrawals/dragonFetch all customers saved cryptocurrency recipient lists. It is possible to fetch wallets supported by ZEN only.
Request
Path Params
merchantCustomerId
string <uuid>
required
An unique customer external identifier
Example:
3fa85f64-5717-4562-b3fc-2c963f66afa6
Query Params
wallet-currency
string
optional
Wallet currency.
itemsPerPage
string
optional
Limit of results
Default:
10
Match pattern:
^[1-9][0-9]*$
page
string
optional
Page of results
Default:
1
Match pattern:
^[1-9][0-9]*$
direction
enum<string>
optional
Direction of order
Allowed values:
ascdesc
Default:
asc
sortBy
enum<string>
optional
column sorting
Allowed value:
createdAt
Default:
createdAt
Header Params
request-id
string
required
A unique identifier generated by requesting client
>= 38 characters<= 1024 characters
Example:
|us04oqdnzFQVr0rITD9/c9OvDRE2sXVfwerv.
Match pattern:
^[a-zA-Z0-9?&:_|\-\/=+.,#\s]+$
Request samples
Responses
OK(200)
Not Found(404)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
array[object (DragonOutput) {11}]
required
id
string <uuid>
required
customerId
string <uuid>
required
>= 1 characters<= 64 characters
transactionType
string
required
<= 16 characters
firstTransactionId
string <uuid>
optional
walletAddress
string
required
>= 1 characters<= 512 characters
walletCurrency
string
required
>= 1 characters<= 16 characters
walletAlias
string
required
>= 1 characters<= 128 characters
verificationStatus
string
optional
<= 32 characters
verificationDate
string
optional
status
enum<string>
required
<= 32 characters
Allowed values:
verifiedunverifiedexpiredinvalidpending
createdAt
string <date-time>
required
meta
object
Meta
itemsPerPage
string
optional
Default:
10
Match pattern:
^[1-9][0-9]*$
page
string
optional
Default:
1
Match pattern:
^[1-9][0-9]*$
direction
enum<string>
optional
Allowed values:
ascdesc
Default:
asc
sortBy
enum<string>
optional
Allowed value:
createdAt
Default:
createdAt
Example
{
"data": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"customerId": "87d8e330-2878-4742-a86f-dbbb3bf522ac",
"transactionType": "string",
"firstTransactionId": "03056aca-c5f2-4f6b-a174-27e4af663155",
"walletAddress": "string",
"walletCurrency": "string",
"walletAlias": "string",
"verificationStatus": "string",
"verificationDate": "string",
"status": "verified",
"createdAt": "2019-08-24T14:15:22.123Z"
}
],
"meta": {
"itemsPerPage": "10",
"page": "1",
"direction": "asc",
"sortBy": "createdAt"
}
}
Modified at 10 days ago