Quality of Service

Global quality of service of the platform.

Get the current quality of service settings

SecurityOAuth2 or ApiKey
Responses
200

Response success

401

Unauthorized access, invalid credentials were used.

get/system/rateLimit
Request samples
Response samples
application/json
{
  • "Rate": 1,
  • "Batch": false
}

Set quality of service

SecurityOAuth2 or ApiKey
Request
Request Body schema: applicajon/json

Set quality of service

Rate
number

The number of messages received per second.

Batch
boolean
Default: false

Indicate batching of messages option.

Responses
200

Response success

400

Malformed request.

401

Unauthorized access, invalid credentials were used.

403

Access forbidden. Current token does not have the necessary authority for the operation.

422

Invalid data was sent.

post/system/rateLimit
Request samples
applicajon/json
{
  • "Rate": 1,
  • "Batch": false
}
Response samples
application/json
{
  • "status": 200,
  • "success": true
}