POST api/v1/settings
Request Information
URI Parameters
None.
Body Parameters
SettingDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| ClubId | globally unique identifier |
None. |
|
| UserId | globally unique identifier |
None. |
|
| SettingKey | string |
Required String length: inclusive between 0 and 250 |
|
| SettingValue | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ClubId": "d1710521-d0d3-44aa-b584-9619cdca3b82",
"UserId": "300def63-2a20-43da-a222-d1779e3ad896",
"SettingKey": "sample string 1",
"SettingValue": "sample string 2"
}
text/html
Sample:
{"ClubId":"d1710521-d0d3-44aa-b584-9619cdca3b82","UserId":"300def63-2a20-43da-a222-d1779e3ad896","SettingKey":"sample string 1","SettingValue":"sample string 2"}
application/xml, text/xml
Sample:
<SettingDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.Settings"> <ClubId>d1710521-d0d3-44aa-b584-9619cdca3b82</ClubId> <SettingKey>sample string 1</SettingKey> <SettingValue>sample string 2</SettingValue> <UserId>300def63-2a20-43da-a222-d1779e3ad896</UserId> </SettingDetails>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SettingDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| ClubId | globally unique identifier |
None. |
|
| UserId | globally unique identifier |
None. |
|
| SettingKey | string |
Required String length: inclusive between 0 and 250 |
|
| SettingValue | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ClubId": "10f7bfab-4831-4f39-a81e-85e27fb8ae59",
"UserId": "7b98d376-681c-4dfa-a474-087e290a4881",
"SettingKey": "sample string 1",
"SettingValue": "sample string 2"
}
text/html
Sample:
{"ClubId":"10f7bfab-4831-4f39-a81e-85e27fb8ae59","UserId":"7b98d376-681c-4dfa-a474-087e290a4881","SettingKey":"sample string 1","SettingValue":"sample string 2"}
application/xml, text/xml
Sample:
<SettingDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.Settings"> <ClubId>10f7bfab-4831-4f39-a81e-85e27fb8ae59</ClubId> <SettingKey>sample string 1</SettingKey> <SettingValue>sample string 2</SettingValue> <UserId>7b98d376-681c-4dfa-a474-087e290a4881</UserId> </SettingDetails>