Documentation/V6.2

PIN Validation

Validate your PIN before making a request pickup using KA Credit

POST

PIN Validation is required before making a request pickup using KA Credit. The PIN is a 6-digit number that you can find in your KA Credit account. If you are a Term of Payment member, you can't use KA Credit as your payment options.

Request

{
  "pin": "123456"
}
FieldDataTypeNullableDesc
pinstringfalseYour KA Credit PIN

Response

Success

{
  "status": true,
  "text": "Pin is valid",
  "data": {
    "valid": true,
    "attempt": 1,
    "max_attempt": 3,
    "lock_until": null
  }
}

Failed Attempt

{
  "status": false,
  "text": "Unable to proceed, pin invalid",
  "data": {
    "valid": false,
    "attempt": 1,
    "max_attempt": 3,
    "lock_until": null
  }
}

Failed System

{
  "status": false,
  "text": "Failed to validate pin"
}

Note

If you're team a Term of Payment member, you don't need to validate your PIN before making a request pickup using KA Credit.