Retrieve the Callbacks registered on the specified Property.
GET /properties/:property_id/callbacks
curl https://reactor.adobe.io/properties/:property_id/callbacks \
-H "Accept: application/vnd.api+json;revision=1" \
-H "Content-Type: application/vnd.api+json" \
-H "Authorization: Bearer [TOKEN]" \
-H "X-Api-Key: [KEY]" \
-H "X-Gw-Ims-Org-Id: [ORG_ID]" \
-X GET
{
"data": [
{
"id": "CBb9ec23007b064ac18244a61c81a90ef1",
"type": "callbacks",
"attributes": {
"created_at": "2023-01-30T20:49:15.036Z",
"subscriptions": [
"rule.created"
],
"updated_at": "2023-01-30T20:49:15.036Z",
"url": "https://www.example.com",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"relationships": {
"property": {
"links": {
"related": "https://reactor.adobe.io/callbacks/CBb9ec23007b064ac18244a61c81a90ef1/property"
},
"data": {
"id": "PR6447cf68788742d1ade517cbf59837c9",
"type": "properties"
}
}
},
"links": {
"property": "https://reactor.adobe.io/properties/PR6447cf68788742d1ade517cbf59837c9",
"self": "https://reactor.adobe.io/callbacks/CBb9ec23007b064ac18244a61c81a90ef1"
}
}
],
"meta": {
"pagination": {
"current_page": 1,
"next_page": null,
"prev_page": null,
"total_pages": 1,
"total_count": 1
}
}
}