Update Email Signature. Use this endpoint to update the email signature associated with the current account.

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
POST /api/v1/accounts/email-signature

Sample request:

POST /Accounts/email-signature "emailSignature" : "Best Regards, John Doe"

multipart/form-data

Body

  • emailSignature string

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
POST /api/v1/accounts/email-signature
curl \
 --request POST 'https://api.lwolf.com/authentisign/api/v1/accounts/email-signature' \
 --header "Content-Type: multipart/form-data" \
 --form "emailSignature=string"
Response examples (default)
{
  "code": 42,
  "message": "string",
  "details": [
    "string"
  ]
}
Response examples (default)
{
  "code": 42,
  "message": "string",
  "details": [
    "string"
  ]
}