POST api/v1/settings
Request Information
URI Parameters
None.
Body Parameters
SettingDetailsName | 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": "9135b3a2-4bde-41c6-b808-0c37e65bf9f8", "UserId": "a63b0800-9e6f-45b1-bcf6-17ae85d0f7c2", "SettingKey": "sample string 1", "SettingValue": "sample string 2" }
text/html
Sample:
{"ClubId":"9135b3a2-4bde-41c6-b808-0c37e65bf9f8","UserId":"a63b0800-9e6f-45b1-bcf6-17ae85d0f7c2","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>9135b3a2-4bde-41c6-b808-0c37e65bf9f8</ClubId> <SettingKey>sample string 1</SettingKey> <SettingValue>sample string 2</SettingValue> <UserId>a63b0800-9e6f-45b1-bcf6-17ae85d0f7c2</UserId> </SettingDetails>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SettingDetailsName | 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": "2191af9b-a449-4869-9a46-a6e1a6a6b4f9", "UserId": "2872821d-e7ed-4862-b020-d51993ea6ed8", "SettingKey": "sample string 1", "SettingValue": "sample string 2" }
text/html
Sample:
{"ClubId":"2191af9b-a449-4869-9a46-a6e1a6a6b4f9","UserId":"2872821d-e7ed-4862-b020-d51993ea6ed8","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>2191af9b-a449-4869-9a46-a6e1a6a6b4f9</ClubId> <SettingKey>sample string 1</SettingKey> <SettingValue>sample string 2</SettingValue> <UserId>2872821d-e7ed-4862-b020-d51993ea6ed8</UserId> </SettingDetails>