Skip to main content

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​

TypeDescription
apiKeystring(Required). Wallet API key for authentication. Include in the request header.
Authorizationstring(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​

FieldTypeDescription
Media TypestringRepresents the accepted media type (\\\\*/\\\\* for any).

Example​

*/*

Method: GET​

>http://20.87.230.105/platform/wallets/payments/ussd/status-query/transaction_123

Headers​

Content-TypeValue
apiKey{{apiKey}}

🔑 Authentication bearer​

ParamvalueType
token{{accessCode}}string

LANGUAGE

AUTHORIZATION

Bearer

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!