- 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.23 Get Card Senstiive Info
GET
https://access.sandbox.orzcash.com/v1/cards/card-sensitive-info
Request
Query Params
cardId
string
optional
Example:
121212
ipAddress
string
optional
Example:
8.8.8.8
Body Params application/json
cardId
string
required
ipAddress
string
required
Example
{
"cardId": "string",
"ipAddress": "string"
}
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/card-sensitive-info?cardId=121212&ipAddress=8.8.8.8' \
--header 'Content-Type: application/json' \
--data-raw '{
"cardId": "string",
"ipAddress": "string"
}'
Responses
🟢200success
application/json
Body
expiry
string
required
url
string
required
Example
{
"expiry": "2022-12-06T02:36:39.975Z",
"url": "https://access.orzcash.com/v1/secure-content/2e91c5ac-eaaf-4274-9afd-520aa35c190e"
}
Modified at 2023-01-03 10:59:44