GET   alerts/recipients/{recipient_id}

Gets a information about the alert recipient matching the provided recipient_id. Available targets: SMS, email and webhook.

URL Parameters

NameDescription
recipient_id

Recipient Id. Type: numeric.

Request example

Response body model example and description

{
  "recipient_id": 3456,
  "targets": [
    {
      "type": "email",
      "id": 12,
      "name": "Email to customer",
      "to": "support@apica.io",
      "enabled": true
    },
    {
      "type": "sms",
      "id": 12,
      "name": "Email to customer",
      "to": "support@apica.io",
      "enabled": true
    },
    {
      "type": "sms",
      "id": 12,
      "name": "Email to customer",
      "to": "support@apica.io",
      "enabled": true
    }
  ]
}
NameType Description
recipient_idInteger

The recipient's numeric identity.

targetsArray

Supported targets: SMS, email and webhook.

typeString

The target's type.

idInteger

The target's numeric identity.

nameString

The target's name.

toString

The target's destination.

enabledBoolean

The target is enable.