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"
}
}{
"status": {
"code": "404",
"description": "ERROR",
"detail": "Payin not found"
}
}Examples: Check Status
Payint Status Codes
PayinPayout Status Codes
PayoutLast updated
Was this helpful?