Skip to main content

Users

User List

Get a list of users in the system

HTTP Request

[GET] /api/v6/users

Query Parameters

Fields

FieldsTypeDescription
user_idintegerUser identifier
contact_idintegerContact identifier
contact_namestringUser name
dept_idintegerDepartment identifier
dept_namestringDepartment name
emailstringUser email
contact_mobilenumericUser phone
extensionsobjectUser extension number

Filtering

FieldsSupportTypeDescription
user_ideq,inintegerIdentifier
valideqintegerValid or not
contact_nameeq,containsstringUser name
emaileq,containsstringUser email
contact_mobileeq,containsnumericUser phone

Sort

Sort (field)Direction
idasc,desc

Limit & Offset

TypeDescription
LimitintegerNumber of records to retrieve
OffsetintegerNumber of records to skip

Example

HTTP Request

GET api/v6/users?fields=contact_name&filtering[id]=2&filtering[contact_name:contains]=Lê&limit=1&offset=1 HTTP/1.1
Host: example.getflycrm.com
Authorization: Bearer token

Status

200 OK

Response

{
"data": [
{
"user_id": 3,
"contact_id": 2,
"contact_name": "Le Van Duy",
"dept_id": 4,
"dept_name": "Administration - HR",
"email": "[email protected]",
"contact_mobile": "",
"extensions": {
"VFONE": "212",
"CALLIO": "3333",
"EPACIFICV2": "4444"
}
}
],
"has_more": true,
"offset": 1,
"limited": 1
}