Skip to main content
GET
List orders

At a glance

Operational behavior

Lists orders in the API key’s scope. Filter and sort fields: id, status, employee, orderNumber, createdAt, updatedAt, contractDurationInMonths, contractStartDate, contractEndDate.
  • Use status=under_review to retrieve work that is eligible for the public HR decision flow.

Common errors

The operation response list and Error handling page are authoritative for complete handling.

Before implementation

  • Generate and log a new X-Request-ID for the attempt.
  • Handle every documented response status.
  • Do not log X-API-Key or unnecessary personal data.
  • Reconcile current resource state before replaying an ambiguous write.

Related integration guidance

Review the complete process, state, retry, and operational pattern for this operation.

Authorizations

X-API-Key
string
header
required

JobHandy integration API key. Send the credential in the X-API-Key header. Treat the key as a secret and use it only from trusted server-side environments.

Headers

X-Tenant-ID
string
inactive
optional
not sent by default

Restricts results to one tenant in the API key's scope. Omit the header to query all tenants in scope. In interactive clients, use the {{tenantId}} variable when a tenant must be selected. Keep the header disabled when tenant selection is not required.

Pattern: ^[0-9a-fA-F]{24}$
X-Request-ID
string<uuid>
inactive
optional
not sent by default

Optional request identifier. If supplied, it must be a UUID v4 or v7 and is returned unchanged in every response. If omitted, the API generates one. Invalid values return 400 INVALID_REQUEST_ID. If your client uses a {{requestId}} variable, refresh it with a new UUID version 4 or 7 for every HTTP request attempt. Keep the header disabled to let the API generate the request identifier.

Pattern: ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[47][0-9a-fA-F]{3}-[89aAbB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$

Query Parameters

page
integer
inactive
optional
server default: 1
not sent by default

One-based page number. When omitted, the server uses 1.

Required range: x >= 1Must be a multiple of 1
Example:

1

pageSize
integer
inactive
optional
server default: 100
not sent by default

Number of resources per page. When omitted, the server uses 100.

Required range: 1 <= x <= 1000Must be a multiple of 1
Example:

100

sort
string
inactive
optional
not sent by default

One endpoint-supported public scalar field. Prefix with - for descending order. Multiple fields and whitespace are rejected. Null values sort first in ascending order and last in descending order.

filter
string
inactive
optional
not sent by default

Expression over endpoint-supported public scalar fields. Operators: =, !=, >, >=, <, <=, IN (...), CONTAINS, STARTS_WITH, ENDS_WITH, IS NULL, IS NOT NULL. AND binds before OR; parentheses override precedence. Whitespace outside quoted values is ignored. String comparisons are case-insensitive. String values may be unquoted, single-quoted, or double-quoted. Values containing whitespace must be enclosed in single or double quotes. An apostrophe may be escaped as ' in either quote style; the escape backslash is not part of the matched value. Nested, object, and array fields are rejected. Examples show decoded filter expressions; URL-encode the query parameter value when constructing a raw URL.

createdAtFrom
string<date-time>
inactive
optional
not sent by default

Inclusive lower bound for createdAt. Must be an ISO-8601 UTC timestamp ending in Z.

Pattern: Z$
Example:

"2026-01-01T00:00:00.000Z"

createdAtTo
string<date-time>
inactive
optional
not sent by default

Inclusive upper bound for createdAt. Must be an ISO-8601 UTC timestamp ending in Z.

Pattern: Z$
Example:

"2026-12-31T23:59:59.999Z"

Response

A page of orders.

One page of orders.

page
integer
required

Current one-based page number.

Must be a multiple of 1
Example:

1

pageSize
integer
required

Maximum number of resources returned per page.

Must be a multiple of 1
Example:

100

totalPages
integer
required

Number of available pages.

Must be a multiple of 1
Example:

1

totalElements
integer
required

Number of resources matching the request.

Must be a multiple of 1
Example:

2

items
object[]
required

Orders on the current page.

Last modified on August 28, 2026