- 1. Overview
- 2. Authentication
- 2.1 Introduction
- 2.2 Creating the Bearer Token
- 3. Requests & Responses
- 4. Getting Started
- 5. API
- Health
- Accounts
- Transfer
- Transactions
- Conversions
- Payouts
- Card Account
- Cards
- Digital Custody
- Countries
- Positions
- Occupations
- 6. Screenshot Illustration(api+image)
5.16 Get Cards
GET
https://access.sandbox.orzcash.com/v1/cards
Request
Query Params
cardAccountId
string
optional
Example:
121212
Body Params application/json
cardAccountId
string
required
Example
{cardAccountId:"12333"}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://access.sandbox.orzcash.com/v1/cards' \
--header 'Content-Type: application/json' \
--data-raw '{cardAccountId:"12333"}'
Responses
🟢200success
application/json
Body
cards
object
required
Example
{
"cards": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"xid": "string",
"xmetadata": {},
"status": "active",
"embossedName": "string",
"network": "mastercard",
"product": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"imageUrl": "string"
},
"expiryMonth": 9,
"expiryYear": 2030,
"last4": "string",
"replacedBy": "string",
"cardLimit": 0,
"dailyAtmLimit": 0,
"dailyPurchaseLimit": 0,
"availableLimit": 0
}
]
}
Modified at 2022-12-29 15:50:03