Lead Status
Endpoint Description
GET request to finloup API to check a lead's process status.
GET /merchant/api/leads/<lead_id>
Request
REQUEST PARAMETERS | TYPE | PARAMETER TYPE | EXAMPLE | DESCRIPTION |
---|---|---|---|---|
lead_id | UUID4 | Path Parameter | 391b5883-b08b-4ffa-98e7-4e18b528f7ck | unique lead identifier |
Response
RESPONSE PARAMETERS | TYPE | EXPANDABLE | EXAMPLE | DESCRIPTION |
---|---|---|---|---|
status | String | "COMPLETED" | Order Status
| |
payment_status | String | "SUCCESSFUL" | Status of the first payment
| |
order_id | String | "098024" | the ecommerce platform order id |
Sample Request & Responses
GET https://app.finloup.com/merchant/api/leads/fbe3a759-72f8-447c-ab65-dc13b596ddak
Status: 200 OK
{
"status":"PAYMENT",
"payment_status":"NOT_STARTED",
"order_id":"3423408"
}