Get Started
Application
Equipment
Comment
Request
Equipment
List all Equipments
List all Equipments
Fetch Equipments
GET
/
v1
/
equipments
curl --request GET \
--url https://api.siit.io/v1/equipments \
--header 'Authorization: Bearer <token>'
{
"meta": {
"count": 123,
"total": 123,
"current_page": 123,
"per_page": 20,
"next_page_link": "<string>",
"previous_page_link": "<string>"
},
"results": [
{
"uid": "<string>",
"name": "<string>",
"serial_number": "<string>",
"model": "<string>",
"vendor_name": "<string>",
"source": "siit",
"lifecycle": "in_service",
"os_name": "<string>",
"processor_type": "<string>",
"purchase_number": "<string>",
"keyboard_layout": "<string>",
"external_url": "<string>",
"storage_capacity_mb": 123,
"total_ram_mb": 123,
"category_uid": "<string>",
"office_location_uid": "<string>",
"holder_uid": "<string>",
"collection_date": "2023-12-25",
"equipment_issue_date": "2023-12-25",
"purchase_date": "2023-12-25",
"guarantee_date": "2023-12-25",
"last_contact_date": "2023-12-25",
"last_report_date": "2023-12-25",
"last_enrollment_date": "2023-12-25",
"updated_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}
]
}
Usage
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
successful
The UID of the Equipment.
Where the equipment was discovered from.
Available options:
jamf
, intune
, jumpcloud_actions
, kandji
, siit
Available options:
in_service
, in_order
, maintenance
, broken
, lost
, reserved
, outdated
, sold
The UID of the Equipment Category. Default to "Other device"
A tag UID of kind "office_location"
UID of the User to which the resource is attached
datetime formatted as ISO 8601 (e.g. "2020-12-15T03:34:13.000Z")
datetime formatted as ISO 8601 (e.g. "2020-12-15T03:34:13.000Z")
curl --request GET \
--url https://api.siit.io/v1/equipments \
--header 'Authorization: Bearer <token>'
{
"meta": {
"count": 123,
"total": 123,
"current_page": 123,
"per_page": 20,
"next_page_link": "<string>",
"previous_page_link": "<string>"
},
"results": [
{
"uid": "<string>",
"name": "<string>",
"serial_number": "<string>",
"model": "<string>",
"vendor_name": "<string>",
"source": "siit",
"lifecycle": "in_service",
"os_name": "<string>",
"processor_type": "<string>",
"purchase_number": "<string>",
"keyboard_layout": "<string>",
"external_url": "<string>",
"storage_capacity_mb": 123,
"total_ram_mb": 123,
"category_uid": "<string>",
"office_location_uid": "<string>",
"holder_uid": "<string>",
"collection_date": "2023-12-25",
"equipment_issue_date": "2023-12-25",
"purchase_date": "2023-12-25",
"guarantee_date": "2023-12-25",
"last_contact_date": "2023-12-25",
"last_report_date": "2023-12-25",
"last_enrollment_date": "2023-12-25",
"updated_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}
]
}