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": "eea570ff-86dd-4f1b-a544-4ec124853b22",
"UserId": "78e73df9-9556-4700-8e1f-111edf32b393",
"SettingKey": "sample string 1",
"SettingValue": "sample string 2"
}
text/html
Sample:
{"ClubId":"eea570ff-86dd-4f1b-a544-4ec124853b22","UserId":"78e73df9-9556-4700-8e1f-111edf32b393","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>eea570ff-86dd-4f1b-a544-4ec124853b22</ClubId> <SettingKey>sample string 1</SettingKey> <SettingValue>sample string 2</SettingValue> <UserId>78e73df9-9556-4700-8e1f-111edf32b393</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": "ace82343-f6b5-4bc8-8f7e-df0b4d502f41",
"UserId": "95386b34-449c-40cf-abb9-6822d3f6e03a",
"SettingKey": "sample string 1",
"SettingValue": "sample string 2"
}
text/html
Sample:
{"ClubId":"ace82343-f6b5-4bc8-8f7e-df0b4d502f41","UserId":"95386b34-449c-40cf-abb9-6822d3f6e03a","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>ace82343-f6b5-4bc8-8f7e-df0b4d502f41</ClubId> <SettingKey>sample string 1</SettingKey> <SettingValue>sample string 2</SettingValue> <UserId>95386b34-449c-40cf-abb9-6822d3f6e03a</UserId> </SettingDetails>