POST api/LeagueDetail/AddLeagueDetailByUniqueCode

Request Information

URI Parameters

None.

Body Parameters

AddLeagueDetailByUniqueCodeCommandDto
NameDescriptionTypeAdditional information
MemberId

globally unique identifier

None.

UniqueCode

string

None.

UserId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "MemberId": "1502b83b-0a9c-4b81-b93c-adc8356ccb23",
  "UniqueCode": "sample string 2",
  "UserId": "dd466701-fddb-4f08-9e08-fc37033ea945"
}

application/xml, text/xml

Sample:
<AddLeagueDetailByUniqueCodeCommandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.LeagueDetailModule.Model">
  <MemberId>1502b83b-0a9c-4b81-b93c-adc8356ccb23</MemberId>
  <UniqueCode>sample string 2</UniqueCode>
  <UserId>dd466701-fddb-4f08-9e08-fc37033ea945</UserId>
</AddLeagueDetailByUniqueCodeCommandDto>

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 'AddLeagueDetailByUniqueCodeCommandDto'.

Response Information

Resource Description

ResponseInfo
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "ec9a4086-312d-4146-a3a4-161f7e1b5071",
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<ResponseInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.LeagueDetailModule.Model">
  <Id>ec9a4086-312d-4146-a3a4-161f7e1b5071</Id>
  <Message>sample string 2</Message>
</ResponseInfo>