Verify User Transaction PIN
PATCH /api/v1/users/{userId}/transactions/pin/{token}/verify
Description
Verify the transaction PIN for a user.
Path Parameters
| Name | Type | Description |
|---|---|---|
token | string | The token (path) |
userId | string | The user ID (path) |
Request Body
- Content Type:
application/json
No request body needed for this endpoint.
Example
PATCH /api/v1/users/{userId}/transactions/pin/{token}/verify
Content-Type: application/json
Response Code: 200 - OK
Description
The PIN has been verified successfully.
Response Fields
No specific fields in the response.
Example
{
"status": "success",
"message": "PIN verified successfully"
}
Method: PATCH
>http://your-api-url/api/v1/users/{userId}/transactions/pin/{token}/verify
headers
Headers
|Content-Type |Value|
| --- | --- | --- |
|apiKey |`{{apiKey}}`|
🔑 Authentication bearer
| Param | Value | Type |
|---|---|---|
| token | {{accessCode}} | string |
LANGUAGE
CURL REQUEST
curl --request PATCH \
--url /api/v1/users/{userId}/transactions/pin/{token}/verify \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!