GET GetAllFormats/{domainName}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| domainName | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of RequestFormat| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Format | string |
None. |
|
| Label | string |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Format": "sample string 2",
"Label": "sample string 3",
"Description": "sample string 4"
},
{
"Id": 1,
"Format": "sample string 2",
"Label": "sample string 3",
"Description": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfRequestFormat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models">
<RequestFormat>
<Description>sample string 4</Description>
<Format>sample string 2</Format>
<Id>1</Id>
<Label>sample string 3</Label>
</RequestFormat>
<RequestFormat>
<Description>sample string 4</Description>
<Format>sample string 2</Format>
<Id>1</Id>
<Label>sample string 3</Label>
</RequestFormat>
</ArrayOfRequestFormat>