Get payment status
Environments
https://merchant.aplazo.net/api
You can query the payment status either by loanId
or cartId
. You should only choose one.
Retrieves the current status of a loan or payment using either loan_id
or cart_id
. You can only use one.
Authorizations
Query parameters
loan_idintegerOptional
The unique identifier of the loan to query the status.
cart_idstringRequired
The unique identifier of the cart/transaction on the merchant's ecommerce platform.
Responses
200
Loan or payment status retrieved successfully.
application/json
404
Cart not found.
get
GET /v1/loan/status?cart_id=text HTTP/1.1
Host:
Authorization: Bearer JWT
Accept: */*
{
"loanId": 151187,
"status": "ACTIVO"
}
Response Examples
Success
Errors
Last updated
Was this helpful?