Label Configurations

Get All Content Options

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

Returns all available content options for a specific label type, grouped by content type and section.

Request Information

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

Response Information

Example
application/json, text/json
{
  "OptionsByContentType": {
    "1": {
      "ContentTypeID": 1,
      "ContentTypeName": "Bibliographic",
      "OptionsBySection": {
        "0": [
                { "ContentID": 1, "ContentDescription": "Title",  "ContentTypeID": 1, "ContentSequence": 1, "ContentSection": 0 },
                { "ContentID": 2, "ContentDescription": "Author", "ContentTypeID": 1, "ContentSequence": 2, "ContentSection": 0 }
        ],
        "1": [ ... ]
      }
    }
  }
}

HTTP Response Codes

Code Description
200 OK. Success