Rate this page:
Provides endpoints to register/deregister your cloud app, and to receive notifications about migration events
GET /rest/atlassian-connect/1/migration/webhook
Retrieves all the webhook endpoints for a cloud site
1 2 3
curl --request GET \
--url 'https://your-site.atlassian.net/rest/atlassian-connect/1/migration/webhook' \
--header 'Accept: application/json'
OK
Content type | Value |
---|---|
application/json |
PUT /rest/atlassian-connect/1/migration/webhook
Replaces existing URLs with a new set of URLs provided by your cloud app to receive notifications
Array<string>
Non empty JSON array of absolute URL(s)
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>"
]
}'
OK
A schema has not been defined for this response code.
Rate this page: