Signatures

Envelope Accept

GET
/signatures/envelope/accept

Records a recipient's explicit agreement to the legal terms or conditions associated with an envelope.

  • The envelope is identified by a unique transactionId (tid).
  • The tid is typically obtained from the email link sent to the recipient or via the GET /signatures/envelope/list endpoint.
  • Provide the tid as a query parameter.
  • This procedure occurs before the recipient views or signs any documents.

Authorization

AuthorizationBearer <token>

JWT token to authenticate the request.

In: header

X-Api-Key<token>

API key, sent as a request header.

In: header

Query Parameters

tid?string

Transaction token identifying a specific recipient+envelope pair. Required for anonymous/recipient access (no Authorization header, or the header doesn't resolve to the envelope owner).

Formatuuid

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/signatures/envelope/accept"
{  "result": {    "statusCode": 200,    "message": "OK",    "data": {      "recipient": {        "id": "string",        "message": "string"      }    }  },  "origin": "string",  "dateTime": "string"}
{  "error": {    "message": "Envelope not found.",    "statusCode": 400,    "innerErrors": [      {        "code": "ENVELOPE_ID_INVALID",        "message": "Envelope not found.",        "userMessage": "Envelope not found."      }    ]  },  "origin": "POST https://apim-mavenheadless-dev-westeu-1.azure-api.net/v1/signatures/envelope/create",  "dateTime": "2026-07-20T12:00:00.0000000+00:00"}
{  "error": {    "message": "Envelope not found.",    "statusCode": 400,    "innerErrors": [      {        "code": "ENVELOPE_ID_INVALID",        "message": "Envelope not found.",        "userMessage": "Envelope not found."      }    ]  },  "origin": "POST https://apim-mavenheadless-dev-westeu-1.azure-api.net/v1/signatures/envelope/create",  "dateTime": "2026-07-20T12:00:00.0000000+00:00"}