POST api/Theme/UpsertLogo
Request Information
URI Parameters
None.
Body Parameters
StoneFactoryAPI.Models.ThemeModel+AddLogo| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| imageLink | string |
None. |
|
| memberId | integer |
None. |
|
| changed | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"imageLink": "sample string 1",
"memberId": 1,
"changed": "sample string 2"
}
application/xml, text/xml
Sample:
<ThemeModel.AddLogo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StoneFactoryAPI.Models"> <changed>sample string 2</changed> <id>1</id> <imageLink>sample string 1</imageLink> <memberId>1</memberId> </ThemeModel.AddLogo>
multipart/form-data
Sample:
<ThemeModel.AddLogo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StoneFactoryAPI.Models"><changed>sample string 2</changed><id>1</id><imageLink>sample string 1</imageLink><memberId>1</memberId></ThemeModel.AddLogo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
System.Net.Http.HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | System.Version |
None. |
|
| Content | System.Net.Http.HttpContent |
None. |
|
| StatusCode | System.Net.HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | System.Net.Http.HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |