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

Headers

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