List wallets
GET/v1/digital-wallets
This endpoint retrieves a paginated list of wallets. You may restrict the wallet list by specifying:
- Use offset for pagination
- Limit the results to a defined number
- Return a wallet(s) related to a defined customer ID
Request
Query Parameters
limit number
Possible values: >= 1 and <= 200
Default value: 20
The number of items to return
offset number
Default value: 0
The number of items to skip
fromCustomerId anyrequired
Responses
- 200
- 400
- 403
- 404
Wallets retrieved with success.
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
traceId string
message string
data
object[]
id stringrequired
nickname stringrequired
pagination
object
totalResults numberrequired
hasMoreResults booleanrequired
{
"traceId": "string",
"message": "string",
"data": [
{
"id": "string",
"nickname": "string"
}
],
"pagination": {
"totalResults": 0,
"hasMoreResults": true
}
}
Invalid request payload. This can happen if required fields are missing or have invalid formats.
- application/json
- Schema
- Example (from schema)
Schema
traceId string
message string
{
"traceId": "string",
"message": "string"
}
The API key is invalid or the client does not have sufficient permissions.
- application/json
- Schema
- Example (from schema)
Schema
traceId string
message string
{
"traceId": "string",
"message": "string"
}
One of the specified resources was not found. Does not apply for empty result set.
- application/json
- Schema
- Example (from schema)
Schema
traceId string
message string
{
"traceId": "string",
"message": "string"
}
Loading...