POST api/Team/EditTeam
Request Information
URI Parameters
None.
Body Parameters
EditTeamCommandDtoName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
TeamName | string |
None. |
|
TeamStats | string |
None. |
|
UserId | globally unique identifier |
None. |
|
SportsTypeId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": "d9eb7a24-09a3-4bdd-951e-124f546bdd0f", "TeamName": "sample string 2", "TeamStats": "sample string 3", "UserId": "43e36da8-7869-45c3-afc8-2b3a7da69aa1", "SportsTypeId": "0feaf38b-afc8-49eb-b030-fdd20c1af916" }
application/xml, text/xml
Sample:
<EditTeamCommandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.TeamModule.Model"> <Id>d9eb7a24-09a3-4bdd-951e-124f546bdd0f</Id> <SportsTypeId>0feaf38b-afc8-49eb-b030-fdd20c1af916</SportsTypeId> <TeamName>sample string 2</TeamName> <TeamStats>sample string 3</TeamStats> <UserId>43e36da8-7869-45c3-afc8-2b3a7da69aa1</UserId> </EditTeamCommandDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>