For Developers
Get Agent
GET https://ed.link/api/v2/my/agents/:agent_id
Retrieve information about a specific Agent that the current user is associated with.
Request Parameters
Parameter | Type | Description |
---|---|---|
agent_id | string | The UUID of the desired Agent. |
Sample Request
axios.get('https://ed.link/api/v2/my/agents/00000000-0000-0000-0000-000000000000', {
headers: {
authorization: `Bearer ${person_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"
}