POST api/Logos
Creates a Logo record. Must upload the file first using the API /api/File/Upload to get the image Url to use in setting the request Logo.Url.
Request Information
URI Parameters
None.
Body Parameters
CreateLogoFileRequestName | Description | Type | Additional information |
---|---|---|---|
Logo | LogoFile |
Required |
Request Formats
application/json, text/json, application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
LogoFileName | Description | Type | Additional information |
---|---|---|---|
Url | string |
Required |
|
Position | integer |
Required |
|
Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "Url": "sample string 1", "Position": 2, "Id": 3 }
application/xml, text/xml
Sample:
<LogoFile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessDomain.Entities"> <Id xmlns="http://schemas.datacontract.org/2004/07/BusinessDomain.Core">3</Id> <Position>2</Position> <Url>sample string 1</Url> </LogoFile>