Notification API
Status API
Mapping API
App data retrieval API
Transfer retrieval API
Feedback channel API
Error retrieval API

Rate this page:

Notification API

Provides endpoints to register/deregister your cloud app, and to receive notifications about migration events

Get all webhooks

GET /rest/atlassian-connect/1/migration/webhook

Retrieves all the webhook endpoints for a cloud site

Request

There are no parameters for this request.

Example

1
2
3
curl --request GET \
  --url 'https://your-site.atlassian.net/rest/atlassian-connect/1/migration/webhook' \
  --header 'Accept: application/json'

Responses

OK

Content typeValue
application/json

WebhookEndpointsDto

Update webhook

PUT /rest/atlassian-connect/1/migration/webhook

Replaces existing URLs with a new set of URLs provided by your cloud app to receive notifications

Request

Body parameters
endpoints

Array<string>

Non empty JSON array of absolute URL(s)

Example

1
2
3
4
5
6
7
8
curl --request PUT \
  --url 'https://your-site.atlassian.net/rest/atlassian-connect/1/migration/webhook' \
  --header 'Content-Type: application/json' \
  --data '{
  "endpoints": [
    "<string>"
  ]
}'

Responses

OK

A schema has not been defined for this response code.

Rate this page: