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

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