Skip to main content

Sets many instance level limits​

Sets many instance level limits

Request Body required
    limits object[]
  • Array [
  • instanceId string
    auditLogRetention string

    auditLogRetention limits the number of events that can be queried via the events API by their age. A value of '0s' means that all events are available. If this value is set, it overwrites the system default.

    block boolean

    if block is true, requests are responded with a resource exhausted error code.

  • ]
Responses

Instance limits set


Schema
    details object
    sequence uint64

    on read: the sequence of the last event reduced by the projection

    on manipulation: the timestamp of the event(s) added by the manipulation

    creationDate date-time

    on read: the timestamp of the first event of the object

    on create: the timestamp of the event(s) added by the manipulation

    changeDate date-time

    on read: the timestamp of the last event reduced by the projection

    on manipulation: the

    resourceOwner resource_owner is the organization an object belongs to
    targetDetails object[]
  • Array [
  • sequence uint64

    on read: the sequence of the last event reduced by the projection

    on manipulation: the timestamp of the event(s) added by the manipulation

    creationDate date-time

    on read: the timestamp of the first event of the object

    on create: the timestamp of the event(s) added by the manipulation

    changeDate date-time

    on read: the timestamp of the last event reduced by the projection

    on manipulation: the

    resourceOwner resource_owner is the organization an object belongs to
  • ]
PUT /instances/limits/_bulk

Request

Base URL
https://$CUSTOM-DOMAIN/system/v1
Content-Type
Body required
{
"limits": [
{
"instanceId": "string",
"auditLogRetention": "string",
"block": true
}
]
}
Accept
curl / cURL
curl -L -X PUT 'https://$CUSTOM-DOMAIN/system/v1/instances/limits/_bulk' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"limits": [
{
"instanceId": "string",
"auditLogRetention": "string",
"block": true
}
]
}'