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

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"
  ]
}