Paylink Status Callback
GET /payments/paylink/status-callback
Description
This endpoint is a callback mechanism designed to receive real-time updates on the status of Paylink transactions. It allows the payment system to notify your application whenever there is a change in the status of a Paylink transaction. No parameters are required for this endpoint, as it is designed to be triggered by the payment system.
Required Headers
| Type | Description | |
|---|---|---|
| apiKey | string | (Required). Wallet API key for authentication. Include in the request header. |
| Authorization | string | (Required). Authentication token. Include in the request header using the "Bearer" scheme. Example: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NGQ2Nm... |
Parameter
No parameter is required for this endpoint
HTTP Status Code: 200 OK
Successful response with a media type of \\\\*/\\\\*, indicating acceptance of any media type.
Response Fields
| Field | Type | Description |
|---|---|---|
| Media Type | string | Represents the accepted media type (\\\\*/\\\\* for any). |
Example
*/*
Method: GET
>http://20.87.230.105/platform/wallets/payments/ussd/status-query/transaction_123
Headers
| Content-Type | Value |
|---|---|
| apiKey | {{apiKey}} |
🔑 Authentication bearer
| Param | value | Type |
|---|---|---|
| token | {{accessCode}} | string |
LANGUAGE
CURL REQUEST
curl --request GET \
--url /payments/paylink/status-callback \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!