Getting Notifications

You can't get your notifications in Atlassian Cloud using the REST API, you have to use graphql

The url is https://<your-atlassian-instance>.atlassian.net/gateway/api/graphql

You need to pass your username (usually your email address) and your api token (as password) in basic auth e.g. username:apitoken.

GraphQL Query

query notifications {
  notifications {
    notificationFeed {
      nodes {
        groupId
        headNotification {
          readState
          notificationId
          content {
            actor {
              displayName
            }
            message
            entity{
              title
              status
            }
            path {
              title
            }
          }
        }

      }
    }
  }
}