POST api/Team/DeleteTeam
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": "4da9923f-51fb-4457-bcce-203e6073115f", "TeamName": "sample string 2", "TeamStats": "sample string 3", "UserId": "73d63709-ec4a-4495-8588-46c03670edf8", "SportsTypeId": "7349a782-6038-40e1-bdcc-1ccb6b52ca26" }
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>4da9923f-51fb-4457-bcce-203e6073115f</Id> <SportsTypeId>7349a782-6038-40e1-bdcc-1ccb6b52ca26</SportsTypeId> <TeamName>sample string 2</TeamName> <TeamStats>sample string 3</TeamStats> <UserId>73d63709-ec4a-4495-8588-46c03670edf8</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>