Documentation

LogIn

This API is used to list contact timeline actions in the CRM .

Method: Get/Post

Base URL : https://hubbucs.com/site/api/hubb/contact_timeline
Mandatory Parameters Sample Description
key 374593457034859 The company account API key, you can get from company settings > API settings
email newcontact@url.com email for user to authenticate
password 123456 Password for user to authenticate
contact_id 789 ID for the existing contact .


Optional Parameters for Search/Filter Sample Description
screen Return 20 record for each page .Send page number to return page records.(You have total records returned in the response) number of page (required for pagination)

Example:


				

Example :

https://hubbucs.com/site/api/hubb/contact_timeline?key=12134651Gsuid7349&email=XXXXX&password=XXXXX&contact_id=XXXX[&screen=1]

Response :

  1. {
  2. "message":"success",
  3. "total_records":"20",
  4. "data":
    • {
    • "action_type":"9",
    • "action_addeddate":"05:32 am",
    • "action_title":"New Test Release",
    • "action_added_by":"SamY",
    • "action_body":"User added new note",
    • }
  5. "page":"page number"
  6. }
  7. ------OR------
  8. {
  9. "error_message":"error message"
  10. }