For Developers
Get Asset
GET https://ed.link/api/v2/graph/assets/:asset_id
Retrieve information about a specific Asset.
Request Parameters
| Parameter | Type | Description |
|---|---|---|
asset_id | string | The UUID of the desired Asset. |
Sample Request
axios.get('https://ed.link/api/v2/graph/assets/b35e64fc-09b1-4f8f-95ab-6b875d7fa0c6', {
headers: {
authorization: `Bearer ${integration_access_token}`
}
});
Sample Response
{
"$request": "00000000-0000-0000-0000-000000000000",
"$data": {
"id": "b35e64fc-09b1-4f8f-95ab-6b875d7fa0c6",
"created_date": "2022-10-24T17:07:33.987Z",
"updated_date": "2022-10-24T17:12:01.242Z",
"name": "Projector A1",
"description": "Ceiling-mounted projector in Room 101",
"serial_number": "SN123456789",
"status": "active",
"purchase_date": "2022-01-01T00:00:00.000Z",
"expiration_date": "2026-01-01T00:00:00.000Z",
"manufacturer": "Epson",
"make": "Epson",
"model": "EB-X41",
"category": "Electronics",
"properties": {},
"cost": 1200,
"currency": "USD",
"invoice_number": "INV12345",
"life_span_in_days": 1460,
"comments": "Assigned to Mrs. Smith.",
"priority": 2,
"flags": [],
"school_ids": ["5c5f9063-f2f2-4d47-9ce4-eb4a4d3f3bc3"],
"facility_ids": ["3f0c9d9d-bbcf-4461-a5c7-909d874ae940"],
"department_ids": ["26f501b9-f811-4cd1-9b38-c20e7f556c27"],
"subject_ids": ["1b88a81a-0d7f-4a31-af7e-eb62f0ecdc1b"],
"course_ids": ["03b9ed4b-b4a4-4a4c-bb67-e1f3c3dc793d"],
"session_ids": ["9a17f029-85e4-481e-b1a6-9296d3c6f1d6", "c6b9f6d7-b6e5-4aa1-9a36-b57a1ef34b4c"],
"person_ids": ["f2bb4d4a-4ce4-4f14-a1d2-7e84fd98b778"]
}
}
