Retrieve the data for an existing Callback, based on its ID.
GET /callbacks/:id
curl https://reactor.adobe.io/callbacks/:id \
-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": "CB90d3bc443e214b08a8c4ab39224eba2a",
"type": "callbacks",
"attributes": {
"created_at": "2023-04-21T22:54:38.595Z",
"subscriptions": [
"rule.created"
],
"updated_at": "2023-04-21T22:54:38.595Z",
"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/CB90d3bc443e214b08a8c4ab39224eba2a/property"
},
"data": {
"id": "PRff5d6453ce9e4969ba2f1a889a79242f",
"type": "properties"
}
}
},
"links": {
"property": "https://reactor.adobe.io/properties/PRff5d6453ce9e4969ba2f1a889a79242f",
"self": "https://reactor.adobe.io/callbacks/CB90d3bc443e214b08a8c4ab39224eba2a"
}
}
}