PUT api/v1/clubs/{code}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| code | string |
Required |
Body Parameters
ClubDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Code | string |
None. |
|
| OrganizationCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "7aebd4da-754a-444f-a903-721c15d31499",
"code": "sample string 1",
"organizationCode": "sample string 2"
}
application/xml, text/xml
Sample:
<ClubDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Dtos"> <Code>sample string 1</Code> <Id>7aebd4da-754a-444f-a903-721c15d31499</Id> <OrganizationCode>sample string 2</OrganizationCode> </ClubDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.