Skip to main content
GET
Search CoworkerTimePasses
A customer pass (CoworkerTimePass) is an issued check-in allowance for a customer, tracking its remaining uses, use status, price, expiry, and invoicing status.

Authentication

This endpoint requires OAuth2 authentication. Include a valid bearer token in the Authorization header. The authenticated user must be a full unrestricted administrator or have the CoworkerTimePass-List role.

Query Parameters

Pagination & Sorting

integer
default:"1"
The page number to retrieve.
integer
default:"25"
The number of records per page.
string
The property name to sort results by (e.g. Name, CreatedOn).
integer
Sort direction. 0 for ascending, 1 for descending.

Filters

integer
Filter by iD of the customer assigned this pass.
integer
Filter by iD of the location that owns this pass.
integer
Filter by iD of the pass definition to issue; it determines the included number of uses and default price.
string
Filter by display value for TimePass.Name..
string
Filter by display value for TimePass.Currency.Code..
string
Filter by optional internal notes about this issued pass.
string
Filter by optional purchase-order reference for this pass.
boolean
Filter by whether the customer has used this pass; update-only operational status.
boolean
Filter by whether the customer currently has an open check-in using this pass; maintained by check-in processing.
string
Filter by uTC timestamp when this pass was used; maintained by check-in processing.
integer
Filter by remaining number of uses on this pass; initialized from the selected pass and consumed by check-ins unless pay-as-you-go.
integer
Filter by total number of included uses; calculated from the selected pass when issued.
boolean
Filter by whether no charge is due for this issued pass; when true its calculated price is zero.
number
Filter by optional monetary price override for this issued pass; when omitted, the selected pass calculates the price for the customer.
integer
Filter by number of identical passes to issue in this request, including this one; a customer cannot hold more than 500 passes.
string
Filter by optional UTC expiration date and time; an expired pass is excluded from access-control updates.
boolean
Filter by whether this pass has been invoiced; maintained by invoicing processing.
string
Filter by uTC timestamp when this pass was invoiced; maintained by invoicing processing.
boolean
Filter by whether this pass was granted by the customer’s plan rather than issued manually or from a product purchase.
boolean
Filter by whether this is a pay-as-you-go pass; pay-as-you-go passes remain active even when no remaining uses are recorded.
string
Filter by internal GUID linking this pass to the plan allocation that created it; do not set or use this field.
string
Filter by internal GUID linking this pass to the customer product purchase that created it; do not set or use this field.
string
Filter by internal GUID linking this pass to the customer contract that created it; do not set or use this field.

Range Filters

string
Filter by uTC timestamp when this pass was used; maintained by check-in processing greater than or equal to this value. Format: YYYY-MM-DDTHH:mm.
string
Filter by uTC timestamp when this pass was used; maintained by check-in processing less than or equal to this value. Format: YYYY-MM-DDTHH:mm.
integer
Filter by remaining number of uses on this pass; initialized from the selected pass and consumed by check-ins unless pay-as-you-go greater than or equal to this value.
integer
Filter by remaining number of uses on this pass; initialized from the selected pass and consumed by check-ins unless pay-as-you-go less than or equal to this value.
integer
Filter by total number of included uses; calculated from the selected pass when issued greater than or equal to this value.
integer
Filter by total number of included uses; calculated from the selected pass when issued less than or equal to this value.
number
Filter by optional monetary price override for this issued pass; when omitted, the selected pass calculates the price for the customer greater than or equal to this value.
number
Filter by optional monetary price override for this issued pass; when omitted, the selected pass calculates the price for the customer less than or equal to this value.
integer
Filter by number of identical passes to issue in this request, including this one; a customer cannot hold more than 500 passes greater than or equal to this value.
integer
Filter by number of identical passes to issue in this request, including this one; a customer cannot hold more than 500 passes less than or equal to this value.
string
Filter by optional UTC expiration date and time; an expired pass is excluded from access-control updates greater than or equal to this value. Format: YYYY-MM-DDTHH:mm.
string
Filter by optional UTC expiration date and time; an expired pass is excluded from access-control updates less than or equal to this value. Format: YYYY-MM-DDTHH:mm.
string
Filter by uTC timestamp when this pass was invoiced; maintained by invoicing processing greater than or equal to this value. Format: YYYY-MM-DDTHH:mm.
string
Filter by uTC timestamp when this pass was invoiced; maintained by invoicing processing less than or equal to this value. Format: YYYY-MM-DDTHH:mm.
string
Filter records created on or after this date. Format: YYYY-MM-DDTHH:mm.
string
Filter records created on or before this date. Format: YYYY-MM-DDTHH:mm.
string
Filter records updated on or after this date. Format: YYYY-MM-DDTHH:mm.
string
Filter records updated on or before this date. Format: YYYY-MM-DDTHH:mm.

Code Examples

Simple listing

Filtering by CreatedOn

Range filters

Response

200

CoworkerTimePass[]
The list of CoworkerTimePass records matching the query. See the Get one CoworkerTimePass endpoint for the full list of properties returned for each record.
Partial records — The listing endpoint returns a summary representation of each CoworkerTimePass. The following fields are not populated in the Records[] response: Notes, PurchaseOrder, Free, CreateMultiple.To get all fields, fetch the full record using the Get one CoworkerTimePass endpoint.Important for updates: When updating a record via PUT, always retrieve the full record with a GET request first, apply your changes to that complete data, and then send the updated record. Do not use data from a listing response as the base for a PUT request, as missing fields may be unintentionally cleared.
integer
Current page number.
integer
Number of records per page.
string
The field used for sorting.
integer
The sort direction (0 = ascending, 1 = descending).
integer
Index of the first item on the current page.
integer
Index of the last item on the current page.
integer
Total number of matching records across all pages.
integer
Total number of pages.
boolean
Whether there is a next page of results.
boolean
Whether there is a previous page of results.
Example Response