• Notification API
  • Status API
  • Mapping API
  • App data retrieval API
  • Transfer retrieval API
  • Feedback channel API
  • Error retrieval API
Platform
App migration platform / Reference / REST API

Notification API

Postman Collection
OpenAPI

Provides endpoints to register/deregister your cloud app and to receive notifications about migration events. To learn more about notifications, see Prepare your cloud app.

GET

Get all webhooks

Retrieves all the webhook endpoints for a cloud site

Request

This request has no parameters.

Responses

OK

application/json

WebhookEndpointsDto
GET/webhook
1 2 3 curl --request GET \ --url 'https://your-site.atlassian.net/rest/atlassian-connect/1/migration/webhook' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 { "endpoints": [ "<string>" ] }
PUT

Update webhook

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

Request

Request bodyapplication/json

Set of endpoints called after the app migration

endpoints

array<string>

Responses

OK

application/json

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

Rate this page: