Request due date extension

This endpoint allows you to extend the due date for a specific milestone in an escrow transaction.

Request due date extension

POST v2/escrow/due-date/extension

NameTypeDescription

Accept*

string

application/json

V-PRIVATE-KEY*

string

your vesicash private key

V-PUBLIC-KEY*

String

your vesicash public key

Request body

  • milestone_id (string): The ID of the milestone for which the due date is to be extended.

  • due_date (string): The new due date for the milestone.

  • note (string): Any additional notes or comments regarding the due date extension

{
    "milestone_id": "djddbbfy3474",
    "due_date": "2024-03-19 15:04:05",
    "note": "I cannot deliver on time"
}

Response

The response is in JSON format and follows the schema

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

Last updated