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": "d8aaddfc-100f-426f-9608-ebc914772747",
"UserId": "c6438609-01ba-42e5-9c9b-583470b4db4f",
"SettingKey": "sample string 1",
"SettingValue": "sample string 2"
}
text/html
Sample:
{"ClubId":"d8aaddfc-100f-426f-9608-ebc914772747","UserId":"c6438609-01ba-42e5-9c9b-583470b4db4f","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>d8aaddfc-100f-426f-9608-ebc914772747</ClubId> <SettingKey>sample string 1</SettingKey> <SettingValue>sample string 2</SettingValue> <UserId>c6438609-01ba-42e5-9c9b-583470b4db4f</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": "ca0ee5e5-2a48-4384-812b-bc703471f857",
"UserId": "36711a40-f4c5-4fdc-9f09-868cd600d551",
"SettingKey": "sample string 1",
"SettingValue": "sample string 2"
}
text/html
Sample:
{"ClubId":"ca0ee5e5-2a48-4384-812b-bc703471f857","UserId":"36711a40-f4c5-4fdc-9f09-868cd600d551","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>ca0ee5e5-2a48-4384-812b-bc703471f857</ClubId> <SettingKey>sample string 1</SettingKey> <SettingValue>sample string 2</SettingValue> <UserId>36711a40-f4c5-4fdc-9f09-868cd600d551</UserId> </SettingDetails>