POST updatelog
Request Information
URI Parameters
None.
Body Parameters
UpdateLogModel| Name | Description | Type | Additional information |
|---|---|---|---|
| value | string |
None. |
|
| subSegID | integer |
None. |
|
| artistID | integer |
None. |
|
| subSegTitle | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"value": "sample string 1",
"subSegID": 1,
"artistID": 2,
"subSegTitle": "sample string 3"
}
text/html
Sample:
{"value":"sample string 1","subSegID":1,"artistID":2,"subSegTitle":"sample string 3"}
application/xml, text/xml
Sample:
<UpdateLogModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KyckerWS.Models"> <artistID>2</artistID> <subSegID>1</subSegID> <subSegTitle>sample string 3</subSegTitle> <value>sample string 1</value> </UpdateLogModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json, text/html
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>