Accept milestone delivery

This endpoint allows the user to accept a delivery for a specific escrow.

Accept milestone delivery

POST v2/escrow/delivery/accept/:milestone_id/:user_id

Params

NameTypeDescription

milestion_id

String

The id of the milestone to be marked to be accepted

User_id

String

The ID of the user

Headers

NameTypeDescription

Accept*

string

application/json

V-PRIVATE-KEY*

string

your vesicash private key

V-PUBLIC-KEY*

String

your vesicash public key

Request body

The request body should be empty as no specific data is required for accepting the delivery.

Response

The response is in JSON format and follows the schema

```json
{
    "status": "success",
    "code": 200,
    "message": "success",
    "data": null
}
```

Last updated