Check Status
Check the payment status of the transactions
Check Status
GET
https://api.stage.localpayment.com/api/transactions/:externalId/status
This endpoint allows to get the payin or payout status
Path Parameters
Name
Type
Description
externalId*
string
Mandatory. The same externalId
you specified when the order was posted. This Id should be unique and meaningful to you.
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"
}
}
Examples: Check Status
curl --location --request GET 'https://api.stage.localpayment.com/api/transactions/1648665215/status/?=' \
--header 'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNjQ4NjY1NjcwLCJqdGkiOiI5OTJmNTU1NjE1NGM0MjEzYjExMmU5OGY1NzgwYmFiMiIsInVzZXJfaWQiOjMwLCJzdXBlcnVzZXIiOnRydWUsImlzX3N0YWZmIjpmYWxzZSwicm9sZXMiOlsiQUxMIl0sImNvdW50cmllcyI6WyJBTEwiXSwiY29tcGFueSI6IjAwMDEiLCJjbGllbnRfY29kZSI6IjAwMDEifQ.svL94lXdzCkFcbpZwSIByAbAxHBFMRxr9yGw0Bxlfs8' \
--data-raw ''
Payint Status Codes
PayinPayout Status Codes
PayoutLast updated
Was this helpful?