v3

latestOpenAPI 3.0.12026-07-31240345599.7 KB
Notification rule steps

List notification rule steps

Lists all notifaction rule steps for the user. It optionally takes two parameters - offset and size.

get/api/{cloudId}/v1/notification-rules/{ruleId}/steps

Path parameters

ruleIdstring required

Identifier of the notification rule

Query parameters

offsetinteger

The offset parameter controls the starting point within the collection of resource results.

sizeinteger

The size parameter controls the maximum number of items that may be returned for a single request.

Response

Returned if the request is successful.

Example response

{
  "values": [
    {
      "id": "dbf70781-d6d8-4924-b90d-6a0c77833748",
      "sendAfter": 5,
      "contact": {
        "method": "email",
        "to": "johnsmith@atlassian.com"
      }
    }
  ],
  "links": {
    "next": "/v1/notification-rules/0hcb717e-c442-4185-8bc1-cc998844f567/steps?offset=10&size=5"
  }
}