Returns details of the specified notification action

Params

Param name Description
pretty
optional

Return a pretty formatted response if true, Default is false


Value: Must be a Boolean

Examples

Request - get details of the specified notification (notification_action_key specified as a part of the url)
  curl -X GET -H "Content-Type:application/json" -H 'X-Auth-Token:SMvLmYkkIVSYrrEQZSix0Q' https://api.datonis.io/api/v3/notification_actions/e18c3t386e

Response (details of the notification action requested)
{
  "notification_action": {
    "bcc": "",
    "body": null,
    "cc": "john@acme.com",
    "created_at": 1448514905,
    "notification_action_key": "e18c3t386e",
    "subject": null,
    "to": "bill@acme.com",
    "updated_at": 1448514905,
    "type": "EmailNotificationAction"
  }
}