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": "88e705ba-6674-45d4-88a9-1c4acb0c16bf",
"UserId": "050558fb-8be3-4d57-80c2-317c5ff8b100",
"SettingKey": "sample string 1",
"SettingValue": "sample string 2"
}
text/html
Sample:
{"ClubId":"88e705ba-6674-45d4-88a9-1c4acb0c16bf","UserId":"050558fb-8be3-4d57-80c2-317c5ff8b100","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>88e705ba-6674-45d4-88a9-1c4acb0c16bf</ClubId> <SettingKey>sample string 1</SettingKey> <SettingValue>sample string 2</SettingValue> <UserId>050558fb-8be3-4d57-80c2-317c5ff8b100</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": "26d1f1d4-441e-4c14-95da-e5c4282ee9f3",
"UserId": "da2b8cb5-bed1-4ed2-be0b-19cda2d12448",
"SettingKey": "sample string 1",
"SettingValue": "sample string 2"
}
text/html
Sample:
{"ClubId":"26d1f1d4-441e-4c14-95da-e5c4282ee9f3","UserId":"da2b8cb5-bed1-4ed2-be0b-19cda2d12448","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>26d1f1d4-441e-4c14-95da-e5c4282ee9f3</ClubId> <SettingKey>sample string 1</SettingKey> <SettingValue>sample string 2</SettingValue> <UserId>da2b8cb5-bed1-4ed2-be0b-19cda2d12448</UserId> </SettingDetails>