Skip to main content

List persons

GET 

/api/persons

Required permissions:

  • settings.team: allows view of company persons.

Here the dedicated support page.

Request

Query Parameters

    limit integer

    Possible values: <= 100

    Default value: 100

    The number of items to include in the response.

    offset integer

    Default value: 0

    The offset of the first returned item.

    updated_at date-time

    Filter items by the updated_at field. This is in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.

    Examples:

    Filter items updated on a date.

    Example: 2024-01-01T20:00:00%2B02:00

    job_title_id integer

    The ID of the job title to filter the results on.

    allocation_manager_id integer

    The ID of the allocation manager to filter the results on.

Header Parameters

    Wethod-Company stringrequired

    The company you want to interact with

    Wethod-Version stringrequired

    The API version you want to use

Responses

Returns the list of persons.

Schema

  • Array [

  • id integerrequired

    Possible values: >= 1

    created_at date-timerequired
    updated_at date-timerequired
    email stringrequired

    Possible values: <= 50 characters

    The person email

    name stringrequired

    Possible values: <= 50 characters

    The person name

    surname stringrequired

    Possible values: <= 50 characters

    The person surname

    role stringrequired

    Possible values: <= 50 characters

    The person role

    is_archived booleanrequired

    Whether the person is archived

    is_visible_in_people_allocation booleanrequired

    Whether the person is visible in people allocation

    has_timesheet_required booleanrequired

    Whether the person needs to fill in timesheet

    level_id integerrequired

    Possible values: >= 1

    ID of the level to associate with this person

    price_list_id integerrequired

    Possible values: >= 1

    ID of the price list to associate with this person

    job_title_id integer

    Possible values: >= 1

    ID of the job title to associate with this person

    allocation_manager_id integer

    Possible values: >= 1

    ID of the allocation manager to associate with this person

  • ]

Loading...