PATCH
/
wallets
/
{wallet_id}
/
accounts
/
{account_id}
curl --request PATCH \
  --url https://api.live.paisr.tech/{version}/wallets/{wallet_id}/accounts/{account_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "code": "<string>"
}'
{
  "success": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

wallet_id
string
required

The Wallet ID.

account_id
string
required

The Account ID.

Body

application/json
The details required to verify a wallet account.
code
string
required

Six digit verification code.

Required string length: 6

Response

200
application/json
Successfully verified wallet account.
success
boolean

Indicates if the request was successful.

message
string

A descriptive message regarding the result.