- 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.24 Change Card PIN
GET
https://access.sandbox.orzcash.com/v1/cards/change-pin
Request
Query Params
cardId
string
optional
pin
string
optional
Body Params application/json
cardId
string
required
pin
string
required
Example
{
cardId:"1003",
pin:"10000078"
}
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/change-pin' \
--header 'Content-Type: application/json' \
--data-raw '{
cardId:"1003",
pin:"10000078"
}'
Responses
🟢200success
application/json
Body
code
string
required
msg
string
required
data
object
required
Example
{
code:200,
msg:"成功",
data:{}
}
Modified at 2022-12-29 15:35:28