POST api/addTeam
Request Information
URI Parameters
None.
Body Parameters
Team| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Name | string |
None. |
|
| Designation | string |
None. |
|
| ImageURL | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"Name": "sample string 2",
"Designation": "sample string 3",
"ImageURL": "sample string 4"
}
text/html
Sample:
{"ID":1,"Name":"sample string 2","Designation":"sample string 3","ImageURL":"sample string 4"}
application/xml, text/xml
Sample:
<Team xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MailAPI"> <Designation>sample string 3</Designation> <ID>1</ID> <ImageURL>sample string 4</ImageURL> <Name>sample string 2</Name> </Team>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of ObjectNone.
Response Formats
application/json, text/json
Sample:
[
{},
{}
]
text/html
Sample:
[{},{}]
application/xml, text/xml
Sample:
<ArrayOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <anyType /> <anyType /> </ArrayOfanyType>