PUT api/Operators/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
Operator| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| DateCreated | date |
None. |
|
| LastModified | date |
None. |
|
| OperatorName | string |
None. |
|
| VendorId | integer |
None. |
|
| ClientId | string |
None. |
|
| Status | integer |
None. |
|
| EventAllowance | decimal number |
None. |
|
| AllowanceCashOutAllowed | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"DateCreated": "2025-12-11T10:55:16.7130038+02:00",
"LastModified": "2025-12-11T10:55:16.7130038+02:00",
"OperatorName": "sample string 2",
"VendorId": 1,
"ClientId": "sample string 3",
"Status": 1,
"EventAllowance": 4.1,
"AllowanceCashOutAllowed": true
}
application/xml, text/xml
Sample:
<Operator xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BonaMarketAPI.Database"> <AllowanceCashOutAllowed>true</AllowanceCashOutAllowed> <ClientId>sample string 3</ClientId> <DateCreated>2025-12-11T10:55:16.7130038+02:00</DateCreated> <EventAllowance>4.1</EventAllowance> <LastModified>2025-12-11T10:55:16.7130038+02:00</LastModified> <OperatorName>sample string 2</OperatorName> <Status>1</Status> <VendorId>1</VendorId> <id>1</id> </Operator>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.