POST api/sms/SuperviseUser

Request Information

URI Parameters

None.

Body Parameters

SuperviseUserModel
NameDescriptionTypeAdditional information
SubordinateUserIds

Collection of integer

None.

PrimaryUserId

integer

None.

SuperviseContent

string

None.

OrgId

globally unique identifier

None.

TaskReciveId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "SubordinateUserIds": [
    1,
    2
  ],
  "PrimaryUserId": 1,
  "SuperviseContent": "sample string 1",
  "OrgId": "ff3c3674-0921-4d38-af8c-fcde7afb9abf",
  "TaskReciveId": "b95bd54e-1da1-4641-91e1-95c33b1a0a21"
}

application/xml, text/xml

Sample:
<SuperviseUserModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Siyan.Lianxinqiao.Webapi.Models.BidingModels">
  <OrgId>ff3c3674-0921-4d38-af8c-fcde7afb9abf</OrgId>
  <PrimaryUserId>1</PrimaryUserId>
  <SubordinateUserIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:long>1</d2p1:long>
    <d2p1:long>2</d2p1:long>
  </SubordinateUserIds>
  <SuperviseContent>sample string 1</SuperviseContent>
  <TaskReciveId>b95bd54e-1da1-4641-91e1-95c33b1a0a21</TaskReciveId>
</SuperviseUserModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.