POST api/Service/insertService
Request Information
URI Parameters
None.
Body Parameters
service| Name | Description | Type | Additional information |
|---|---|---|---|
| ServicesID | integer |
None. |
|
| titile | string |
None. |
|
| coverimage | string |
None. |
|
| ordernumber | integer |
None. |
|
| description | string |
None. |
|
| slug | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ServicesID": 1,
"titile": "sample string 2",
"coverimage": "sample string 3",
"ordernumber": 1,
"description": "sample string 4",
"slug": "sample string 5"
}
application/xml, text/xml
Sample:
<service xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/limitlessgraphicsAPI"> <ServicesID>1</ServicesID> <coverimage>sample string 3</coverimage> <description>sample string 4</description> <ordernumber>1</ordernumber> <slug>sample string 5</slug> <titile>sample string 2</titile> </service>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Dictionary of string [key] and Object [value]Response Formats
application/json, text/json
Sample:
{
"sample string 1": {},
"sample string 3": {}
}
application/xml, text/xml
Sample:
<ArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<KeyValueOfstringanyType>
<Key>sample string 1</Key>
<Value />
</KeyValueOfstringanyType>
<KeyValueOfstringanyType>
<Key>sample string 3</Key>
<Value />
</KeyValueOfstringanyType>
</ArrayOfKeyValueOfstringanyType>