time users

Returns all persons who can register time entries for the given company

get/companies/{companySlug}/timeUsers

Query parameters

pageinteger

Returns the number of the page to return. Valid page values are integers from 0 to the total number of pages. Default value is 0.

pageSizeinteger

Defines the number of entries to return on each page. Maximum number of results that can be returned at one time are 100. Default value is 25.

namestring

Filter by name (partial match)

emailstring

Filter by email address

Response

OK

timeUserIdinteger

Unique identifier for the time user

namestring

Name of the person

emailstring

Email address of the person

createdDatestring date-time

Timestamp when the person was added

lastModifiedDatestring date-time

Timestamp when the person was last modified

Example response

[
  {
    "timeUserId": 11111,
    "name": "Ola Nordmann",
    "email": "ola@example.com"
  }
]

Changes

No recorded changes to this endpoint across all 1 revision of this API.