POST api/FollowInsertKOL
Request Information
URI Parameters
None.
Body Parameters
KOLModel| Name | Description | Type | Additional information |
|---|---|---|---|
| KOLId | integer |
None. |
|
| UserId | integer |
None. |
|
| Name | string |
None. |
|
| Qualification | string |
None. |
|
| Picture | string |
None. |
|
| Description | string |
None. |
|
| SpecialityId | integer |
None. |
|
| Speciality | string |
None. |
|
| DateShow | string |
None. |
|
| IsFollow | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"KOLId": 1,
"UserId": 2,
"Name": "sample string 3",
"Qualification": "sample string 4",
"Picture": "sample string 5",
"Description": "sample string 6",
"SpecialityId": 7,
"Speciality": "sample string 8",
"DateShow": "sample string 9",
"IsFollow": 10
}
application/xml, text/xml
Sample:
<KOLModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DecstopAPI.Models"> <DateShow>sample string 9</DateShow> <Description>sample string 6</Description> <IsFollow>10</IsFollow> <KOLId>1</KOLId> <Name>sample string 3</Name> <Picture>sample string 5</Picture> <Qualification>sample string 4</Qualification> <Speciality>sample string 8</Speciality> <SpecialityId>7</SpecialityId> <UserId>2</UserId> </KOLModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Result | string |
None. |
|
| newResult | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Result": "sample string 2",
"newResult": "sample string 3"
}
application/xml, text/xml
Sample:
<ResultModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DecstopAPI.Models"> <Id>1</Id> <Result>sample string 2</Result> <newResult>sample string 3</newResult> </ResultModel>