GET api/Product/Imprints

Get all imprints for account./>

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of imprints.

Collection of GetImprintResponse
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Key

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "4335fe95-d823-4c7f-99b1-dcc7bb7ccf43",
    "Key": "sample string 1"
  },
  {
    "Id": "4335fe95-d823-4c7f-99b1-dcc7bb7ccf43",
    "Key": "sample string 1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfGetImprintResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alice.Dto.Responses">
  <GetImprintResponse>
    <Id>4335fe95-d823-4c7f-99b1-dcc7bb7ccf43</Id>
    <Key>sample string 1</Key>
  </GetImprintResponse>
  <GetImprintResponse>
    <Id>4335fe95-d823-4c7f-99b1-dcc7bb7ccf43</Id>
    <Key>sample string 1</Key>
  </GetImprintResponse>
</ArrayOfGetImprintResponse>