Skip to main content
PATCH
/
v2
/
card
/
{id}
/
password
Update card password
curl --request PATCH \
  --url https://api.sandbox.finsei.com/v2/card/{id}/password \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'password=12345678AAaa!'
{
  "status": "MFA_REQUIRED",
  "mfaToken": "def456"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Query Parameters

validate
enum<integer>
default:0
Available options:
0,
1
signToken
string

Body

password
string

3d-secure password

Example:

"12345678AAaa!"

Response

MFA sign required

status
string
required
Example:

"MFA_REQUIRED"

mfaToken
string
required
Example:

"def456"