List Contacts
GEThttps://secure.fleetio.com/api/v1/contacts
Returns a list of your contacts.
Request
Responses
- 200
- 401
- 500
OK
Response Headers
- application/json
- Schema
- Example (auto)
Schema
- Array [
- ]
The Contact's email address.
The Contact's full name.
The Contact's first name.
The Contact's middle name.
The Contact's last name.
The number of images associated with this Contact.
Possible values: >= 0
The number of documents associated with this Contact.
Possible values: >= 0
The number of comments associated with this Contact.
Possible values: >= 0
If this Contact belongs to a Group, this will be
the Fleetio ID of that Group
.
If this Contact belongs to a Group, this will be
the Group
's name.
If this Contact belongs to a Group, this will be
a pipe delimited string representing the Group
hierarchy. Each Group
in the list is the parent of the Groups
which follow.
Group 1|Group 2|Group 3
Whether or not the Contact is a Technician.
Whether or not the Contact is a Vehicle Operator.
Whether or not the Contact is an Employee.
The Contact's birth date.
2023-03-14
The Contact's street address.
123 Main St
The Contact's street address line 2.
Apt 1
The Contact's city.
The Contact's region, state, or province.
The Contact's postal code, zip code, or equivalent.
The Contact's country.
The Contact's employee number.
The Contact's job title.
Possible values: <= 255 characters
The Contact's driver's license class.
The Contact's driver's license number.
The locality which issued the Contact's license.
The Contact's driver's license expiration date.
2023-03-14
The Contact's home phone number.
The Contact's mobile phone number.
The Contact's work phone number.
Any other phone number for this Contact.
When the Contact started working for the company, if applicable.
When the Contact left or will leave the company, if applicable.
The Contact's hourly rate.
*Full details on working with Custom Fields here.
attachment_permissions objectnullable
The URL of the Contact's default image/profile photo, if any.
If the Contact is a Fleetio User
, those details will be included here.
Possible values: >= 1
The last date and time this Contact's associated User made an API request. Null if Contact is not assocated with a User.
The last date and time this Contact's associated User signed into the web application. Null if Contact is not assocated with a User.
The last date and time this Contact's associated User used the mobile app. Null if Contact is not assocated with a User.
[
{
"id": 0,
"created_at": "2024-07-29T15:51:28.071Z",
"updated_at": "2024-07-29T15:51:28.071Z",
"email": "string",
"name": "string",
"first_name": "string",
"middle_name": "string",
"last_name": "string",
"images_count": 0,
"documents_count": 0,
"comments_count": 0,
"group_id": 0,
"group_name": "string",
"group_hierarchy": "Group 1|Group 2|Group 3",
"technician": true,
"vehicle_operator": true,
"employee": true,
"birth_date": "2023-03-14",
"street_address": "123 Main St",
"street_address_line_2": "Apt 1",
"city": "string",
"region": "string",
"postal_code": "string",
"country": "string",
"employee_number": "string",
"job_title": "string",
"license_class": "string",
"license_number": "string",
"license_state": "string",
"license_expiration": "2023-03-14",
"home_phone_number": "string",
"mobile_phone_number": "string",
"work_phone_number": "string",
"other_phone_number": "string",
"start_date": "2024-07-29",
"leave_date": "2024-07-29",
"hourly_labor_rate": 0,
"custom_fields": {},
"attachment_permissions": {
"read_photos": true,
"manage_photos": true,
"read_documents": true,
"manage_documents": true
},
"default_image_url": "string",
"user": {},
"account_membership_id": 0,
"last_api_request": "2024-07-29T15:51:28.071Z",
"last_web_access": "2024-07-29T15:51:28.071Z",
"last_mobile_app_access": "2024-07-29T15:51:28.071Z"
}
]
Request could not be authenticated
- application/json
- Schema
- Example (auto)
Schema
Possible values: >= 400
and <= 599
A short, human-readable summary of the problem type. It SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
A human-readable explanation specific to this occurrence of the problem.
A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"status": 0,
"title": "string",
"detail": "string",
"instance": "string"
}
Something unexpected happened
- application/json
- Schema
- Example (auto)
Schema
Possible values: >= 400
and <= 599
A short, human-readable summary of the problem type. It SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
A human-readable explanation specific to this occurrence of the problem.
A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"status": 0,
"title": "string",
"detail": "string",
"instance": "string"
}
Authorization: Authorization
name: Authorizationtype: apiKeyin: headerdescription: Prefix the value with "Token", for example: "Token 76cbe06c49a64". You can generate a new API key [here](https://secure.fleetio.com/api_keys).
name: Account-Tokentype: apiKeyin: headerdescription: You can find your Account-Token [here](https://secure.fleetio.com/api_keys)
- curl
- ruby
- python
- csharp
- go
- java
- nodejs
- php
- CURL
curl -L 'https://secure.fleetio.com/api/v1/contacts' \
-H 'Accept: application/json' \
-H 'Authorization: Token <Authorization>' \
-H 'Account-Token: <Authorization>'