Pine LabsDOCS

Reset Brand Wallet PIN

POST/payment-option/wallet/customer/{customer_id}/reset

Resets the PIN for a customer's brand wallet. Use this when the customer's wallet PIN is locked or forgotten. Returns the new PIN and remaining attempts.

Requires Bearer token. Get token →

Path Parameters

NameTypeDescription
customer_id
stringrequired

Unique customer identifier (e.g. cust-v1-...).

Response

NameTypeDescription
pin
string

The new wallet PIN

pin_attempts_remaining
integer

Number of PIN entry attempts remaining

Status Codes

200PIN reset successfully.
400The request was malformed or missing required fields.
401Authentication failed — missing, expired, or invalid Bearer token.
500An unexpected error occurred on the server.
Request
curl --request POST \
  --url https://pluraluat.v2.pinepg.in/payment-option/wallet/customer/cust-bw-001/reset \
  --header 'Authorization: Bearer YOUR_ACCESS_TOKEN'

Run this request

customer_id
200 OK
{
  "pin": "847291",
  "pin_attempts_remaining": 3
}