GET v1/themes
Returns an array of all themes
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Theme| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
None. |
|
| Name | string |
None. |
|
| FrameBackgroundColor | string |
None. |
|
| CompanyLogo | string |
None. |
|
| Logo | string |
None. |
|
| FrameBackgroundImage | string |
None. |
Response Codes
- 200 OK: All themes returned successfully
- 401 Unauthorized:
- 500 InternalServerError:
Response Formats
application/json, text/json
Sample:
[
{
"Id": "sample string 1",
"Name": "sample string 2",
"FrameBackgroundColor": "sample string 3",
"CompanyLogo": "sample string 4",
"Logo": "sample string 5",
"FrameBackgroundImage": "sample string 6"
},
{
"Id": "sample string 1",
"Name": "sample string 2",
"FrameBackgroundColor": "sample string 3",
"CompanyLogo": "sample string 4",
"Logo": "sample string 5",
"FrameBackgroundImage": "sample string 6"
}
]
text/html
Sample:
[{"Id":"sample string 1","Name":"sample string 2","FrameBackgroundColor":"sample string 3","CompanyLogo":"sample string 4","Logo":"sample string 5","FrameBackgroundImage":"sample string 6"},{"Id":"sample string 1","Name":"sample string 2","FrameBackgroundColor":"sample string 3","CompanyLogo":"sample string 4","Logo":"sample string 5","FrameBackgroundImage":"sample string 6"}]
application/xml, text/xml
Sample:
<ArrayOfTheme xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ITAGroup.TaxValidation.Api.Contracts.v1.Models">
<Theme>
<CompanyLogo>sample string 4</CompanyLogo>
<FrameBackgroundColor>sample string 3</FrameBackgroundColor>
<FrameBackgroundImage>sample string 6</FrameBackgroundImage>
<Id>sample string 1</Id>
<Logo>sample string 5</Logo>
<Name>sample string 2</Name>
</Theme>
<Theme>
<CompanyLogo>sample string 4</CompanyLogo>
<FrameBackgroundColor>sample string 3</FrameBackgroundColor>
<FrameBackgroundImage>sample string 6</FrameBackgroundImage>
<Id>sample string 1</Id>
<Logo>sample string 5</Logo>
<Name>sample string 2</Name>
</Theme>
</ArrayOfTheme>