POST api/LeagueDetail/DeleteLeagueDetail

Request Information

URI Parameters

None.

Body Parameters

EditLeagueDetailCommandDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

LeagueHeaderId

globally unique identifier

None.

MemberId

globally unique identifier

None.

IsAdmin

boolean

None.

UserId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "88edf110-6e5b-45bd-9d40-2b1fb4c5277e",
  "LeagueHeaderId": "5fca1c1c-5c3d-4702-bb8a-0c152ec97f33",
  "MemberId": "4cae1977-2e41-4353-8a24-e9b3b795fd3e",
  "IsAdmin": true,
  "UserId": "cf7c87ba-8671-4ce4-b15e-be0a4317f09a"
}

application/xml, text/xml

Sample:
<EditLeagueDetailCommandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.LeagueDetailModule.Model">
  <Id>88edf110-6e5b-45bd-9d40-2b1fb4c5277e</Id>
  <IsAdmin>true</IsAdmin>
  <LeagueHeaderId>5fca1c1c-5c3d-4702-bb8a-0c152ec97f33</LeagueHeaderId>
  <MemberId>4cae1977-2e41-4353-8a24-e9b3b795fd3e</MemberId>
  <UserId>cf7c87ba-8671-4ce4-b15e-be0a4317f09a</UserId>
</EditLeagueDetailCommandDto>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'EditLeagueDetailCommandDto'.

Response Information

Resource Description

ResponseDto
NameDescriptionTypeAdditional information
UserId

globally unique identifier

None.

CustomerId

globally unique identifier

None.

Token

string

None.

Message

string

None.

ErrorMessage

string

None.

MessageFr

string

None.

ResponseData

string

None.

NovaAPIId

string

None.

IsSuccess

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "UserId": "2b389c56-30a7-489d-87fa-ceb2cde7d6a3",
  "CustomerId": "53fe848c-570a-468f-8709-87a2bcf02721",
  "Token": "sample string 3",
  "Message": "sample string 4",
  "ErrorMessage": "sample string 5",
  "MessageFr": "sample string 6",
  "ResponseData": "sample string 7",
  "NovaAPIId": "sample string 8",
  "IsSuccess": true
}

application/xml, text/xml

Sample:
<ResponseDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.CustomerModule.Model">
  <CustomerId>53fe848c-570a-468f-8709-87a2bcf02721</CustomerId>
  <ErrorMessage>sample string 5</ErrorMessage>
  <IsSuccess>true</IsSuccess>
  <Message>sample string 4</Message>
  <MessageFr>sample string 6</MessageFr>
  <NovaAPIId>sample string 8</NovaAPIId>
  <ResponseData>sample string 7</ResponseData>
  <Token>sample string 3</Token>
  <UserId>2b389c56-30a7-489d-87fa-ceb2cde7d6a3</UserId>
</ResponseDto>