Status Component

Create

Create a new Status Component record.

post/api/cp/status-component

Request body

idinteger

Id

account_idinteger

Account Id (references account.id)

titlestring

Title

card_idstring

Card Id

descriptionstring

Description

status'operational' | 'performance-issues' | 'partial-outage' | 'major-outage' required

Status

Example request

{
  "id": 12345,
  "account_id": 1,
  "title": "Example Name",
  "card_id": 1,
  "description": "A detailed description of the resource",
  "status": "operational"
}

Response

Successful response

statusstring

Operation status

Example response

{
  "id": 12345,
  "status": "OK"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.