POST api/AddTeamMember
Request Information
URI Parameters
None.
Body Parameters
TeamData| Name | Description | Type | Additional information |
|---|---|---|---|
| TeamId | integer |
None. |
|
| MemberId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"TeamId": 1,
"MemberId": 2
}
application/xml, text/xml
Sample:
<TeamData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.mcapp.Models"> <MemberId>2</MemberId> <TeamId>1</TeamId> </TeamData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResposeData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<ResposeData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.mcapp.Models"> <Id>1</Id> <Message>sample string 2</Message> </ResposeData>