Label Configurations

Get Label Configuration By ID

GET /api/.../labelconfigurations/{labelTypeID}

Returns a single label configuration by label type ID.

Request Information

Parameters
Name Description Type
labelTypeID The ID of the label configuration to retrieve. Integer

Response Information

Example
application/json, text/json
{
  "LabelTypeID": -13,
  "DisplayName": "PAS-Test",
  "PageWidth": 850,
  "PageHeight": 1100,
  "PageTopMargin": 20,
  "PageLeftMargin": 20,
  "TextAlignment": "Left",
  "ColumnsPerPage": 4,
  "RowsPerPage": 10,
  "PocketCount": 0,
  "Spine": {
    "Width": 200,
    "Height": 100,
    ...
  },
  "Pocket": null,
  "ContentItems": []
}

HTTP Response Codes

Code Description
200 OK. Success
404 Not Found. Label configuration does not exist.