GET v1/formats/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
FormatResource| Name | Description | Type | Additional information |
|---|---|---|---|
| Format | FormatDTO |
None. |
Response Formats
application/json, text/json
Sample:
{
"format": {
"primitiveFormat": 1,
"name": "sample string 2",
"location": 3,
"id": 4
}
}
application/xml, text/xml
Sample:
<Resources xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CablecastAPI.DTOs">
<Format>
<Id>4</Id>
<Location>3</Location>
<Name>sample string 2</Name>
<PrimitiveFormat>1</PrimitiveFormat>
</Format>
</Resources>