Validate Transactions Pin for User
GET /api/v1/users/{userId}/transactions/pin/{token}/validate
Description
Validate the transactions pin for a user.
Path Parameters
| Name | Type | Description |
|---|---|---|
token | string | The validation token (path) |
userId | string | The user ID (path) |
Request Headers
| Name | Type | Description |
|---|---|---|
| None | No headers |
Request Body
- Content Type:
N/A
Example
GET /api/v1/users/{userId}/transactions/pin/{token}/validate
Response Code: 200 - OK
Description
Pin validated successfully.
Method: GET
>http://your-api-url/api/v1/users/{userId}/transactions/pin/{token}/validate
🔑 Authentication bearer
| Param | Value | Type |
|---|---|---|
| token | {{accessCode}} | string |
LANGUAGE
CURL REQUEST
curl --request GET \
--url /api/v1/users/{userId}/transactions/pin/{token}/validate \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!