GET v2/Orders/{id}/GetAvaiableBrochureTemplates

Returns the list of brochure templates available for the order.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Order number

integer

Required

Body Parameters

None.


Response Information

Resource Description

BrochureTemplatesViewModel
NameDescriptionTypeAdditional information
Total

integer

None.

BrochureTemplatesList

Collection of BrochureTemplateViewModel

None.

Response Formats

application/json, text/json

Sample:
{
  "total": 1,
  "brochureTemplatesList": [
    {
      "templateId": 1,
      "templateName": "sample string 2",
      "templateWidth": "sample string 3",
      "templateHeight": "sample string 4",
      "brochureStyleCode": "sample string 5",
      "thumbnailUrlsList": [
        "sample string 1",
        "sample string 2"
      ]
    },
    {
      "templateId": 1,
      "templateName": "sample string 2",
      "templateWidth": "sample string 3",
      "templateHeight": "sample string 4",
      "brochureStyleCode": "sample string 5",
      "thumbnailUrlsList": [
        "sample string 1",
        "sample string 2"
      ]
    }
  ]
}