Skip to main content
Get credit status
curl --request POST \
  --url https://api.example.com/client-interfaces/vna/get-credit-status \
  --header 'Content-Type: application/json' \
  --data '
{
  "AccountIdentifier": "<string>",
  "CreditTrackingNumber": "<string>"
}
'
{
  "ResponseDescription": "<string>"
}
This API MUST be implemented by the Partner. Platform’s backend will query the status of a previous credit operation.
Our backend will consume this service by performing a POST request to: [Base-URL]/GetCreditStatus. Our backend will perform this request every CreditStatusQueryRepetitionsInMinutes minutes. Expected behavior: Asynchronous query of the status of a previous funds credit order. With the tracking number (CreditTrackingNumber), the partner will report if the credit is in progress (InProgress), approved (Approved), or if it ended in an error (Failed).

Body

application/json
AccountIdentifier
string
required
CreditTrackingNumber
string
required

Response

200 - application/json

Ok

CreditStatus
enum<string>
required
Available options:
InProgress,
Approved,
Failed
ResponseDescription
string