Skip to main content

Get Send Money Status API

This API retrieves the status of a send money transaction based on a requestId.

Endpoint

GET /api/sandbox/v1/send-money/status

Base URL

https://api.kiotapay.co

Query Parameters

ParameterTypeDescriptionRequired
companyIdstringThe ID of the company requesting the status of the send money transaction.
requestIdstringThe unique ID of the send money transaction.

Request Headers

KeyValueRequiredDescription
Content-Typeapplication/jsonSpecifies that the request body is in JSON format.
AuthorizationBearer <your-token>API authentication token. Replace <your-token> with a valid JWT.

Interactive API

Example Curl Request

curl --location 'https://api.kiotapay.co/api/sandbox/v1/send-money/status?requestId=cd3e5b37-8f23-465e-a720-b2a78f2b62c1'
Example Response
{
    "status": 200,
    "message": "Success",
    "data": {
        "requestId": "cd3e5b37-8f23-465e-a720-b2a78f2b62c1",
        "phoneNumber": "254745362174",
        "status": "PENDING",
        "amount": 1000.0
    }
}