Skip to main content
GET
/
v2
/
alerts
/
{identifier}
Get Alert (OpsGenie)
curl --request GET \
  --url https://api.warrn.io/v2/alerts/{identifier} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "tinyId": "<string>",
    "alias": "<string>",
    "message": "<string>",
    "tags": [
      "<string>"
    ],
    "teams": [
      {
        "name": "<string>"
      }
    ]
  },
  "requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
Retrieve alert details in OpsGenie response format. The identifier can be a Warrn UUID, an alias, or a tiny ID - pass identifierType=alias or identifierType=tiny if you’re not using the default UUID lookup.

Authorizations

Authorization
string
header
required

Bearer token using your Warrn API key.

Path Parameters

identifier
string
required

Query Parameters

identifierType
enum<string>
default:id
Available options:
id,
alias,
tiny

Response

OpsGenie-formatted alert

data
object
requestId
string<uuid>