Back to index

FOREST CRM - CSV Contact API

This API provides the following services:


List contacts

Request

The request format is:

https://app.forestcrm.hu/api/csv/<API KEY>/contacts

Request HTTP method: GET

Request parameters:

query (optional):
string to query in contact data (name position phone email). Partial matches are also returned. Search is case insensitive. query string may be but does not have to be surrounded by either single or double quotation marks.
companyId (optional):
id of the company whose contacts are queried. Can be supplied with query.

If no parameters are supplied all contacts for the tenant are returned.

Example

https://app.forestcrm.hu/api/csv/demo/contacts?query=Stronghand

Response

Response has the following columns:

  1. contact_id
  2. Company
  3. Name
  4. Position
  5. Phone
  6. Email
  7. Skype
  8. Phone2
  9. Fax
  10. Note
  11. Created at
  12. Created by
  13. Updated at
  14. Updated by
  15. External ref

Example

contact_id Company Name Position Phone Email Skype Phone2 Fax Note Created at Created by Updated at Updated by External ref
3565537892Julian Stronghand"marketing, PR"(422) 743-8974[email protected]2010-01-01 01:00:00 +01002013-07-10 00:00:00 +0200

Back to index