GET v1/Font/List

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

FontListViewModel
NameDescriptionTypeAdditional information
Items

Collection of FontListItemViewModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "Guid": "2eed26ed-8c24-4628-af5b-34b1b0229ab2",
      "Name": "sample string 2"
    },
    {
      "Guid": "2eed26ed-8c24-4628-af5b-34b1b0229ab2",
      "Name": "sample string 2"
    }
  ]
}

application/octet-stream

Sample:
{"Items":[{"Guid":"2eed26ed-8c24-4628-af5b-34b1b0229ab2","Name":"sample string 2"},{"Guid":"2eed26ed-8c24-4628-af5b-34b1b0229ab2","Name":"sample string 2"}]}

application/xml, text/xml

Sample:
<FontListViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Interpulse.EventSystem.ViewModels.Services.List">
  <Items>
    <FontListItemViewModel>
      <Guid>2eed26ed-8c24-4628-af5b-34b1b0229ab2</Guid>
      <Name>sample string 2</Name>
    </FontListItemViewModel>
    <FontListItemViewModel>
      <Guid>2eed26ed-8c24-4628-af5b-34b1b0229ab2</Guid>
      <Name>sample string 2</Name>
    </FontListItemViewModel>
  </Items>
</FontListViewModel>