POST Client/SaveClientResponsibleBetting
Save Client Responsible Betting
Request Information
URI Parameters
None.
Body Parameters
Collection of ApiSaveClientResponsibleBettingFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| FK_ClientResponsibleBettingTypeID |
Gets or sets the Client Responsible Betting Type ID. |
integer |
None. |
| FK_ClientID |
Gets or sets the ClientID. |
integer |
None. |
| LimitAmount |
Gets or sets the Limit Amount. |
integer |
None. |
| SelfExclusionDate |
Gets or sets the Self Exclusion Date. |
date |
None. |
| userID |
Gets or sets the user identifier. |
integer |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"FK_ClientResponsibleBettingTypeID": 1,
"FK_ClientID": 2,
"LimitAmount": 1,
"SelfExclusionDate": "2025-12-06T06:54:23.4589127+02:00",
"userID": 3
},
{
"FK_ClientResponsibleBettingTypeID": 1,
"FK_ClientID": 2,
"LimitAmount": 1,
"SelfExclusionDate": "2025-12-06T06:54:23.4589127+02:00",
"userID": 3
}
]
application/xml, text/xml
Sample:
<ArrayOfApiSaveClientResponsibleBettingFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models">
<ApiSaveClientResponsibleBettingFilter>
<userID>3</userID>
<FK_ClientID>2</FK_ClientID>
<FK_ClientResponsibleBettingTypeID>1</FK_ClientResponsibleBettingTypeID>
<LimitAmount>1</LimitAmount>
<SelfExclusionDate>2025-12-06T06:54:23.4589127+02:00</SelfExclusionDate>
</ApiSaveClientResponsibleBettingFilter>
<ApiSaveClientResponsibleBettingFilter>
<userID>3</userID>
<FK_ClientID>2</FK_ClientID>
<FK_ClientResponsibleBettingTypeID>1</FK_ClientResponsibleBettingTypeID>
<LimitAmount>1</LimitAmount>
<SelfExclusionDate>2025-12-06T06:54:23.4589127+02:00</SelfExclusionDate>
</ApiSaveClientResponsibleBettingFilter>
</ArrayOfApiSaveClientResponsibleBettingFilter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiSaveClientResponsibleBettingResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject |
Gets or sets the response object. |
ApiSaveClientResponsibleBetting |
None. |
| ResponseType |
Gets or sets the type of the response. |
integer |
None. |
| ResponseMessage |
Gets or sets the response message. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseObject": {
"SaveStatusID": 1,
"SaveStatusMessage": "sample string 1"
},
"ResponseType": 1,
"ResponseMessage": "sample string 2"
}
application/xml, text/xml
Sample:
<ApiSaveClientResponsibleBettingResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models">
<ResponseMessage>sample string 2</ResponseMessage>
<ResponseType>1</ResponseType>
<ResponseObject>
<SaveStatusID>1</SaveStatusID>
<SaveStatusMessage>sample string 1</SaveStatusMessage>
</ResponseObject>
</ApiSaveClientResponsibleBettingResponse>