Label Configurations

Create Label Configuration

POST /api/.../labelconfigurations

Creates a new label configuration.

Request Information

Body Parameters

A DtoLabelConfiguration object representing the label configuration to create.

Response Information

Example
application/json, text/json
{
  "DisplayName": "New Spine Label",
  "PageWidth": 850,
  "PageHeight": 1100,
  "PageTopMargin": 20,
  "PageLeftMargin": 20,
  "TextAlignment": "Left",
  "ColumnsPerPage": 4,
  "RowsPerPage": 10,
  "PocketCount": 0,
  "Spine": {
    "Width": 200,
    "Height": 100,
    "Indent": 5,
    "FontName": "Microsoft Sans Serif",
    "FontSize": 8.25
  }
}

HTTP Response Codes

Code Description
200 OK. Success
400 Bad Request. Validation errors or missing configuration.