Check Status

Check the payment status of the transactions

Check Status

GET https://api.stage.localpayment.com/api/transactions/:id/status

This endpoint allows to get the payin or payout status

Path Parameters

Name
Type
Description

id*

string

Mandatory. Use the same externalId you gave when requesting the transaction or the internalId returned by LocalPayment when the transaction was generated.

Headers

Name
Type
Description

Authorization*

string

Mandatory. Bearer JWT token in format Bearer eyJ0... . For more information about authentication, please refer to Authentication

{
    "internalId": "f2006e1f-aaee-4106-8252-e45bdf4ed197",
    "externalId": "1649365324",
    "status": {
        "code": "200",
        "description": "Completed",
        "detail": "The payin was credited"
    }
}

The Body structure of the Callback is the same as the Body structure of the Check Status

Examples: Check Status

Payint Status Codes

Payin

Payout Status Codes

Payout

Last updated

Was this helpful?