For Developers
Get Event
GET https://ed.link/api/v2/graph/events/:event\_id
Retrieve information about a specific Event.
Request Parameters
Parameter | Type | Description |
---|---|---|
event_id | string | The UUID of the desired Event. |
Sample Request
axios.get('https://ed.link/api/v2/graph/events/00000000-0000-0000-0000-000000000000', {
headers: {
authorization: `Bearer ${integration_access_token}`
}
});
Sample Response
{
"$data": {
"id": "00000000-0000-0000-0000-000000000000",
"date": "2021-07-26T06:15:47.179Z",
"type": "deleted",
"target": "person",
"target_id": "00000000-0000-0000-0000-000000000000",
"integration_id": "00000000-0000-0000-0000-000000000000",
"materialization_id": "00000000-0000-0000-0000-000000000000",
"data": {
...
}
},
"$request": "00000000-0000-0000-0000-000000000000"
}