- 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.18 Suspend Card
GET
https://access.sandbox.orzcash.com/v1/cards/suspend
Request
Query Params
cardAccountId
string
required
cardId
string
required
idempotencyKey
string
required
Body Params application/json
cardAccountId
string
required
cardId
string
required
idempotencyKey
string
required
Example
{
cardAccountId:"1008",
cardId:"1003",
idempotencyKey:"1004"
}
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/suspend?cardAccountId&cardId&idempotencyKey' \
--header 'Content-Type: application/json' \
--data-raw '{
cardAccountId:"1008",
cardId:"1003",
idempotencyKey:"1004"
}'
Responses
🟢200success
application/json
Body
object {0}
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 2022-12-29 15:05:45