For Developers

Get Request

GET https://ed.link/api/v2/graph/requests/:request\_id

Retrieve information about a specific request.

Request Parameters

ParameterTypeDescription
request_idstringThe UUID of the desired request.

Sample Request

axios.get('https://ed.link/api/v2/graph/requests/00000000-0000-0000-0000-000000000000', {
    headers: {
        authorization: `Bearer ${integration_access_token}`
    }
});

Sample Response

{
  "$data": {
    "id": "00000000-0000-0000-0000-000000000000",
    "date": "2021-07-26T22:29:21.121Z",
    "start_date": "2021-07-26T22:29:20.744Z",
    "end_date": "2021-07-26T22:29:21.049Z",
    "method": "GET",
    "path": "/api/v2/graph/people",
    "status": 200,
    "properties": {
      "ip": "0.0.0.0",
      "query": {},
      "api_server": "0.0.0.0",
      "user_agent": "PostmanRuntime/7.28.1"
    },
    "input": {},
    "output": {
      ...
    },
    "person_id": null,
    "integration_id": "00000000-0000-0000-0000-000000000000"
  },
  "$request": "00000000-0000-0000-0000-000000000000"
}