Create a new layout. This endpoint allows you to create a signature layout for future signing.

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/layouts

Sample request:

POST /layouts { "name": "Test Layout" }

Query parameters

  • Name

    Get or Set the Layout Name. This property represents the descriptive name of the layout.

Body

The layout details.

  • name string | null

Body

The layout details.

  • name string | null

Body

The layout details.

  • name 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
POST /api/v1/layouts
curl \
 --request POST 'https://api.lwolf.com/authentisign/api/v1/layouts' \
 --header "Content-Type: application/json" \
 --data '{"name":"string"}'
curl \
 --request POST 'https://api.lwolf.com/authentisign/api/v1/layouts' \
 --header "Content-Type: text/json"
curl \
 --request POST 'https://api.lwolf.com/authentisign/api/v1/layouts' \
 --header "Content-Type: application/*+json"
Request examples
{
  "name": "string"
}
Request examples
{
  "name": "string"
}
Request examples
{
  "name": "string"
}
Response examples (default)
{
  "code": 42,
  "message": "string",
  "details": [
    "string"
  ]
}
Response examples (default)
{
  "code": 42,
  "message": "string",
  "details": [
    "string"
  ]
}