OpsGenie · Schema

AsyncRequestResponse

AlertsIncident ManagementMonitoringOn-CallOperations

Properties

Name Type Description
result string Result message.
took number Time taken to process the request in seconds.
requestId string Unique identifier for the asynchronous request that can be used to track the status.
View JSON Schema on GitHub

JSON Schema

opsgenie-asyncrequestresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AsyncRequestResponse",
  "title": "AsyncRequestResponse",
  "type": "object",
  "properties": {
    "result": {
      "type": "string",
      "description": "Result message."
    },
    "took": {
      "type": "number",
      "description": "Time taken to process the request in seconds."
    },
    "requestId": {
      "type": "string",
      "description": "Unique identifier for the asynchronous request that can be used to track the status."
    }
  }
}