- 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.15 Issue Card
POST
https://access.sandbox.orzcash.com/v1/cards
Request
Query Params
type
string
required
cardAccountId
string
required
productId
array[string]
required
Example:
[""]
embossedName
string
required
xid
string
required
xmetadata
integer
required
Body Params application/json
type
string
required
cardAccountId
string
required
productId
array[string]
required
embossedName
string
required
xid
string
required
xmetadata
object
required
Example
{
"type":"string",
"cardAccountId":'1000233',
"productId":["1000"]
"embossedName":120,
"xid": "string",
"xmetadata": {},
}
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 POST 'https://access.sandbox.orzcash.com/v1/cards?type&cardAccountId&productId=&embossedName&xid&xmetadata' \
--header 'Content-Type: application/json' \
--data-raw '{
"type":"string",
"cardAccountId":'\''1000233'\'',
"productId":["1000"]
"embossedName":120,
"xid": "string",
"xmetadata": {},
}'
Responses
🟢200success
application/json
Body
id
string
required
xid
string
required
xmetadata
string
required
status
string
required
embossedName
string
required
network
string
required
product
string
required
expiryMonth
number
required
expiryYear
number
required
last4
string
required
replacedBy
number
required
cardLimit
number
required
dailyPurchaseLimit
number
required
availableLimit
number
required
Example
{
"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 2023-01-03 10:57:18