Skip to main content
POST
/
v1
/
sla
/
override-sla
Override SLA for a job
curl --request POST \
  --url https://sla.thena.ai/v1/sla/override-sla \
  --header 'Content-Type: application/json' \
  --data '
{
  "entityId": "entity-123456",
  "entityType": "ticket",
  "metricOverrides": [
    {
      "durationInMinutes": 120,
      "metric": "response_time"
    }
  ]
}
'

Body

application/json
entityId
string
required

The unique identifier of the entity

Example:

"entity-123456"

entityType
string
required

The type of the entity

Example:

"ticket"

metricOverrides
object[]
required

The metric overrides

Response

User is not authenticated!