Update the email address of a signing participant and resend the invitation.

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://apidocs.lwolf.com/doc/authentisign-api/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Authentisign API MCP server": {
    "url": "https://apidocs.lwolf.com/doc/authentisign-api/mcp"
  }
}

Close
PUT /api/v1/participants/{participantId}/email

Sample request:

PATCH /api/v1/participants/{participantId}/email { "email": "change@lwolf.com" }

Path parameters

  • participantId string(uuid) Required

    The identifier of the participant whose email is to be updated.

Query parameters

  • Email

    Get or Set the email address of the participant.

Body

The data transfer object containing the new email address.

  • email string | null

Body

The data transfer object containing the new email address.

  • email string | null

Body

The data transfer object containing the new email address.

  • email string | null

Responses

  • 200

    Success

  • Error

    Hide response attributes Show response attributes object
    • code integer(int32)
    • message string | null
    • details array[string] | null
    Hide response attributes Show response attributes object
    • code integer(int32)
    • message string | null
    • details array[string] | null
    Hide response attributes Show response attributes object
    • code integer(int32)
    • message string | null
    • details array[string] | null
PUT /api/v1/participants/{participantId}/email
curl \
 --request PUT 'https://api.lwolf.com/authentisign/api/v1/participants/{participantId}/email' \
 --header "Content-Type: application/json" \
 --data '{"email":"string"}'
curl \
 --request PUT 'https://api.lwolf.com/authentisign/api/v1/participants/{participantId}/email' \
 --header "Content-Type: text/json"
curl \
 --request PUT 'https://api.lwolf.com/authentisign/api/v1/participants/{participantId}/email' \
 --header "Content-Type: application/*+json"
Request examples
{
  "email": "string"
}
Request examples
{
  "email": "string"
}
Request examples
{
  "email": "string"
}
Response examples (default)
{
  "code": 42,
  "message": "string",
  "details": [
    "string"
  ]
}
Response examples (default)
{
  "code": 42,
  "message": "string",
  "details": [
    "string"
  ]
}