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": "fdb495a7-e341-4dfe-af5f-fc1695fa43ea",
"UserId": "5d46a9a2-8e6e-4188-9f7e-b73e51fa6cf8",
"SettingKey": "sample string 1",
"SettingValue": "sample string 2"
}
text/html
Sample:
{"ClubId":"fdb495a7-e341-4dfe-af5f-fc1695fa43ea","UserId":"5d46a9a2-8e6e-4188-9f7e-b73e51fa6cf8","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>fdb495a7-e341-4dfe-af5f-fc1695fa43ea</ClubId> <SettingKey>sample string 1</SettingKey> <SettingValue>sample string 2</SettingValue> <UserId>5d46a9a2-8e6e-4188-9f7e-b73e51fa6cf8</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": "b7f7ec18-a210-4889-a8a9-b69d8e449d45",
"UserId": "8d3a290f-9760-4050-a172-799809187eca",
"SettingKey": "sample string 1",
"SettingValue": "sample string 2"
}
text/html
Sample:
{"ClubId":"b7f7ec18-a210-4889-a8a9-b69d8e449d45","UserId":"8d3a290f-9760-4050-a172-799809187eca","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>b7f7ec18-a210-4889-a8a9-b69d8e449d45</ClubId> <SettingKey>sample string 1</SettingKey> <SettingValue>sample string 2</SettingValue> <UserId>8d3a290f-9760-4050-a172-799809187eca</UserId> </SettingDetails>