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": "CB42988fd43d884d9c8efd53f296df1c6f",
"type": "callbacks",
"attributes": {
"created_at": "2023-01-30T20:49:09.592Z",
"subscriptions": [
"rule.created"
],
"updated_at": "2023-01-30T20:49:09.592Z",
"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/CB42988fd43d884d9c8efd53f296df1c6f/property"
},
"data": {
"id": "PR5a4ce49d82594ef29c6544c45d781b06",
"type": "properties"
}
}
},
"links": {
"property": "https://reactor.adobe.io/properties/PR5a4ce49d82594ef29c6544c45d781b06",
"self": "https://reactor.adobe.io/callbacks/CB42988fd43d884d9c8efd53f296df1c6f"
}
}
}