Reject milestone delivery
This endpoint is used to reject a specific escrow transaction.
Reject milestone delivery
POST
/v2/escrow/delivery/reject/:milestone_id/:user_id
Params
Name
Type
Descrption
user_id
String
The ID of the user
milestone_id
String
The ID of the milestone that needs to be rejected
Headers
Name
Type
Description
Accept*
string
application/json
V-PRIVATE-KEY*
string
your vesicash private key
V-PUBLIC-KEY*
String
your vesicash public key
Request body
reason (string, required): The reason for rejecting the transaction.
{
"reason":"I want to"
}
Response
The response is in JSON format and follows the schema
```json
{
"status": "success",
"code": 200,
"message": "success",
"data": null
}
```
Last updated