Skip to main content
GET
/
users
/
search-by-name
/
{name}
Get users by Name
curl --request GET \
  --url https://api.projectcor.com/v1/users/search-by-name/{name} \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "first_name": "Jane",
    "last_name": "Doe",
    "picture": "https://user-images.staging.projectcor.com/local/Upload/ProfilePictures/50x50/user.png",
    "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,
    "gmt": "-03:00",
    "leaves": []
  }
]

Documentation Index

Fetch the complete documentation index at: https://developers.projectcor.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

name
string
required

Response

200 - application/json

List of users

id
integer
first_name
string
last_name
string
picture
string

URL to user's profile picture

email
string<email>
cuil
string
remaining_hours
number
user_position_id
integer
role_id
integer

1=C-Level, 2=Director, 3=Project Manager, 4=Collaborator, 5=Freelancer, 6=Client

daily_hours
number
labels
object[] | null
plan_id
integer

4=Project Management, 5=Capacity Planning

plan_name
string
hidden
boolean
position_name
string | null
category_id
integer | null
category_name
string | null
gmt
string

UTC offset from the user's last login location. Indicates the timezone configured at their last login.

Example:

"-03:00"

leaves
object[]