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": "c4cf05fe-6c42-4580-a1dd-8edc3ba3fc55",
"UserId": "87f6fcbe-d8f1-4707-88d7-8dd61eaccfe1",
"SettingKey": "sample string 1",
"SettingValue": "sample string 2"
}
text/html
Sample:
{"ClubId":"c4cf05fe-6c42-4580-a1dd-8edc3ba3fc55","UserId":"87f6fcbe-d8f1-4707-88d7-8dd61eaccfe1","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>c4cf05fe-6c42-4580-a1dd-8edc3ba3fc55</ClubId> <SettingKey>sample string 1</SettingKey> <SettingValue>sample string 2</SettingValue> <UserId>87f6fcbe-d8f1-4707-88d7-8dd61eaccfe1</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": "ad2ee4dc-5ddd-41f1-a8f5-7bc1060475e0",
"UserId": "284f7e7b-f3b5-4d28-9666-e791f86b2164",
"SettingKey": "sample string 1",
"SettingValue": "sample string 2"
}
text/html
Sample:
{"ClubId":"ad2ee4dc-5ddd-41f1-a8f5-7bc1060475e0","UserId":"284f7e7b-f3b5-4d28-9666-e791f86b2164","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>ad2ee4dc-5ddd-41f1-a8f5-7bc1060475e0</ClubId> <SettingKey>sample string 1</SettingKey> <SettingValue>sample string 2</SettingValue> <UserId>284f7e7b-f3b5-4d28-9666-e791f86b2164</UserId> </SettingDetails>