Check Payment
This endpoint returns information about specific transactions related to your LocalPayment accounts
Check Payment
GET https://api.stage.localpayment.com/api/transactions/:externalId
Path Parameters
Name
Type
Description
externalId*
string
Mandatory. The same externalId you specified when the order was posted. An Id should be meaningful to you
Headers
Name
Type
Description
Authorization*
string
Mandatory. BearerJWT token in format Bearer eyJ0... . For more information about authentication, please refer to Authenticationtoken
{
"externalId": "test",
"internalId": "f8be3b50-da22-43bb-afd1-2e7f1d79ab88",
"currency": "ARS",
"amount": 10000,
"paymentCurrency": "ARS",
"paymentAmount": 10000,
"fxQuote": 0,
"fxquoteToken": null,
"confirmedamount": 10000,
"localtaxes": 0,
"financialfees": 0,
"fees": 0,
"totalamount": 10000,
"accountNumber": "032.032.00000008",
"transactionType": "PayIn",
"methodcode": "1022",
"status": {
"code": "200",
"description": "COMPLETED",
"detail": "The payin was credited"
},
"dateCreated": "2021-11-10T16:21:19Z",
"dateProcessed": "2021-11-24T18:18:51Z"
}Example
Example response
Last updated
Was this helpful?