GET v1/store/products/{productID}/document/materials

Get document materials.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
productID

The unique ID of the product.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

DocumentMaterialsModel
NameDescriptionTypeAdditional information
Fonts

The document fonts.

Collection of DocumentFontModel

None.

ImageResources

The document image resources.

Collection of DocumentImageResourceModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Fonts": [
    {
      "Face": "sample string 1",
      "Family": "sample string 2",
      "Url": "sample string 3"
    },
    {
      "Face": "sample string 1",
      "Family": "sample string 2",
      "Url": "sample string 3"
    }
  ],
  "ImageResources": [
    {
      "Key": "sample string 1",
      "DisplayName": "sample string 2",
      "Url": "sample string 3"
    },
    {
      "Key": "sample string 1",
      "DisplayName": "sample string 2",
      "Url": "sample string 3"
    }
  ]
}