Skip to main content
GET
/
users
Get Users
curl --request GET \
  --url https://api.projectcor.com/v1/users \
  --header 'Authorization: Bearer <token>'
{
  "total": "100",
  "perPage": 20,
  "page": 1,
  "lastPage": 20,
  "data": [
    {
      "id": 123,
      "first_name": "Jane",
      "picture": "https://user-images.staging.projectcor.com/local/Upload/ProfilePictures/50x50/user.png",
      "last_name": "Doe",
      "email": "jane.doe@example.com",
      "cuil": "",
      "remaining_hours": 100,
      "user_position_id": 3,
      "role_id": 2,
      "daily_hours": 0,
      "labels": null,
      "plan_id": 5,
      "plan_name": "Capacity Planning",
      "hidden": false,
      "position_name": null,
      "category_id": null,
      "category_name": null,
      "leaves": []
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

filters
string

JSON filters object

Response

200 - application/json

Paginated list of users

total
string
perPage
integer
page
integer
lastPage
integer
data
object[]