Einpix API documentation
  1. Equipment
Einpix API documentation
  • Changelog
  • About
  • API
    • Task
      • Create
      • List
      • Detail
      • Change status
    • Checklist
      • By task
    • Client
      • List
      • Detail
    • User
      • List
      • Detail
    • Venue
      • Create
      • List
      • Detail
    • Category
      • Task
        • List
        • Detail
    • Tag
      • List
      • Detail
    • Template
      • Checklist
        • List
        • Detail
    • Equipment
      • List
        GET
      • Detail
        GET
    • Comment
      • Create
      • Detail
    • Worklog
      • List
      • Hisory
    • Materials
      • By task
    • Service
      • By task
  • Schemas
    • User
    • Venue
    • Task
    • Task comment
    • Tag
    • Task category
    • Picture
    • Check item
    • Equipment
    • Client
    • Task severity
    • Attachment
    • Changed log
    • User group
    • WDJ material
    • Unit master
    • WDJ service
    • Worklog History
    • Checklist template
    • Worklog
    • Activity task
    • Downtime task
    • Sla rule
  1. Equipment

List

GET
equipments/{page}
Retrieves the list of equipments.

Pagination Information#

The Einpix API returns a maximum of 50 equipments per request.
To retrieve the next set of 50 equipments, update the page parameter by incrementing it by 1 from the previous request.
Filtering with since and before
since
Returns only the records created or updated after the given datetime.
Use this when you want to fetch new or modified data since a specific point in time.
before
Returns only the records created or updated before the given datetime.
Use this when you want to fetch historical data up to a certain point in time.
Usage Examples
Get items created/updated after or/and before August 1st, 2025, 10:30 AM Vilnius:
?since=2025-08-01T10:30:00%2B03:00
Values
?since=2025-08-01T10:30:00%2B03:00
?before=2025-08-01T10:30:00%2B03:00
Values explanation:
since/before - Query params name
2025-08-01 - The date
T - Separator between date and time
10:30:00 - Time
%2B - URL encoding for +
Recognized the format - 2025-08-01T10:30:00+05:30
Request to format dates and times
When providing dates and times, please always use two digits for months, days, hours, minutes, and seconds.
✅ Correct format:
2018-1-1 -> 2018-01-01
9:5:7 -> 09:05:07

Request

Path Params

Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api.einpix.com/public/v1/equipments/1?since={{SINCE_ISO}}&before={{BEFORE_ISO}}'

Responses

🟢200Success
application/json
Body

Example
[
    {
        "id": "2652df0a-7487-46a2-9ec3-0a9521da5793",
        "title": "nesciunt quibusdam sequi",
        "sku": null,
        "serial_number": null,
        "venue": {
            "id": 111,
            "name": "voluptates provident sunt"
        }
    },
    {
        "id": "b9d50fa2-aa3e-4ee9-8ca3-7b5da53bb43b",
        "title": "cupiditate recusandae earum",
        "sku": null,
        "serial_number": "ex Duis",
        "venue": {
            "id": 222,
            "name": "amet minus reiciendis"
        }
    }
]
Modified at 2025-08-31 21:16:20
Previous
Detail
Next
Detail
Built with