/v1/operator/update

Update operator information

PATCH/v1/operator/update

Allows an authenticated operator to update its own configuration (e.g., rtp value, callback URL, allowed IP addresses).

Headers

Name
Value

Authorization

Bearer <API_TOKEN>

Content-Type

application/json

Accept

application/json

Body

{
  "name": "string",
  "rtp": 99,
  "callbackURL": "https://example.com/api/callback",
  "allowedIPs": [
    "1.1.1.1",
    "192.168.1.1"
  ]
}
Field
Data Type
Description
Mandatory

name

string

Operator name, usually your company name or individual name.

Optional

rtp

number

Return to Player percentage (50%~95%)

Optional

callbackURL

string (URL)

Callback endpoint for transaction and event notifications

Optional

allowedIPs

string[]

Whitelisted IP addresses allowed to access the API

Optional

Response

Field
Data Type
Description

success

boolean

Indicates whether the request was processed successfully

message

string

Human-readable status message

Last updated