Vesicash API Documentation V2
  • Overview
  • API DOCUMENTATION
    • API Basics
    • Authentication
    • Errors
    • Escrow Transactions
      • Create a transaction
      • Get transaction by transaction_id
      • Get transaction charges
      • Get bank lists
      • Get transactions by userid
      • Get all transactions
      • Pay for transaction
      • Send transaction invite
      • Accept transaction
      • Reject transaction
      • Mark milestone as done
      • Accept milestone delivery
      • Reject milestone delivery
      • Request due date extension
      • Approve due date extension
      • Edit transaction
      • Edit milestone
      • Edit party
      • Delete transaction
      • Webhook Notification
    • Merchant Of Record
      • Initiate MoR checkout
      • Get MoR transactions
Powered by GitBook
On this page
  • Approve due date extension
  • Request body
  • Response
  1. API DOCUMENTATION
  2. Escrow Transactions

Approve due date extension

This endpoint is used to make an HTTP POST request to extend the due date for a specific escrow.

Approve due date extension

POST v2/escrow/due-date/extension/:milestone_id/:user_id

Params

Name
Type
Description

milestone_id

String

The ID of the milestone to be approved for extension

user_id

String

The ID of the user

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

The request body should be empty as no specific data is required for due date extension.

Response

The response is in JSON format and follows the schema

```json
{
    "status": "success",
    "code": 200,
    "message": "success",
    "data": null
}
```
PreviousRequest due date extensionNextEdit transaction

Last updated 10 months ago