GET api/LogoMatSize
Get All Sizes
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of LogoMatSize| Name | Description | Type | Additional information |
|---|---|---|---|
| SizeID | integer |
None. |
|
| SizeDescription | string |
None. |
|
| RecName | string |
None. |
|
| widthInInches | integer |
None. |
|
| heightInInches | integer |
None. |
|
| IsPhotoRealSize | boolean |
None. |
|
| IsActive | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SizeID": 1,
"SizeDescription": "sample string 2",
"RecName": "sample string 3",
"widthInInches": 4,
"heightInInches": 5,
"IsPhotoRealSize": true,
"IsActive": true
},
{
"SizeID": 1,
"SizeDescription": "sample string 2",
"RecName": "sample string 3",
"widthInInches": 4,
"heightInInches": 5,
"IsPhotoRealSize": true,
"IsActive": true
}
]
application/xml, text/xml
Sample:
<ArrayOfLogoMatSize xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Virtuoso.Domain">
<LogoMatSize>
<IsActive>true</IsActive>
<IsPhotoRealSize>true</IsPhotoRealSize>
<RecName>sample string 3</RecName>
<SizeDescription>sample string 2</SizeDescription>
<SizeID>1</SizeID>
<heightInInches>5</heightInInches>
<widthInInches>4</widthInInches>
</LogoMatSize>
<LogoMatSize>
<IsActive>true</IsActive>
<IsPhotoRealSize>true</IsPhotoRealSize>
<RecName>sample string 3</RecName>
<SizeDescription>sample string 2</SizeDescription>
<SizeID>1</SizeID>
<heightInInches>5</heightInInches>
<widthInInches>4</widthInInches>
</LogoMatSize>
</ArrayOfLogoMatSize>