Update Instant Settlement
PUT
/settlements/instant/{id}This endpoint allows you to update the status and the amount of a specific settlment by by passing the id
as a path parameter.
:::warning[]
This endpoint is allowed only for dropshipping applications.
:::
Request
Settlment ID. Get a list of Settlment IDs from here
The amount to hold. It should be <= the order total, and up to two decimal points
The settlement status
{
"amount": 9823743,
"status": "ready"
}
Request samples
[api.label.responses]
Response status code, a numeric or alphanumeric identifier used to convey the outcome or status of a request, operation, or transaction in various systems and applications, typically indicating whether the action was successful, encountered an error, or resulted in a specific condition.
Response flag, boolean indicator used to signal a particular condition or state in the response of a system or application, often representing the presence or absence of certain conditions or outcomes.
Settlement unique ID
Order's reference ID. Get a list of Order Reference IDs from here
The amount held from the Merchant's wallet
The settlement status
{
"status": 200,
"success": true,
"data": {
"id": 33787469,
"reference_id": 685748,
"amount": 200,
"status": "ready"
}
}