For Developers

Get Agent

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

Retrieve information about a specific Agent.

Request Parameters

ParameterTypeDescription
agent_idstringThe UUID of the desired Agent.

Sample Request

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

Sample Response

{
    "$data": {
        "id": "00000000-0000-0000-0000-000000000000",
        "relationship": "parent",
        "properties": {},
        "observer_id": "00000000-0000-0000-0000-000000000000",
        "target_id": "00000000-0000-0000-0000-000000000000"
    },
    "$request": "00000000-0000-0000-0000-000000000000"
}