• Help Desk reporting gives you real-time visibility into your support operation without the manual work. Ask our experts about which metrics matter most! AMA Dec 8-12.

    Ask us anything

Update API for tickets

JNallareddy
Participant

1.Do Hubspot have Update API for tickets other than channel logs?

2.To know the association between contacts, tickets and companies there is a long process. Is there any other way to the relation between them.

0 Upvotes
1 Accepted solution
MrJustinGivens
Solution
Top Contributor | Platinum Partner
Top Contributor | Platinum Partner

@JNallareddy Then you need to use the search API for tickets.

 

/crm/v3/objects/tickets/search

 

You can then filter off the last modified time or other properties. 

View solution in original post

4 Replies 4
MrJustinGivens
Top Contributor | Platinum Partner
Top Contributor | Platinum Partner

@JNallareddy Here's the API for Tickets: https://developers.hubspot.com/docs/api/crm/tickets

 

You can do just about anything with that API.

 

You can also get all the associations by type, for example:

Contacts: /crm/v4/objects/tickets/{ticketId}/associations/contact

Company: /crm/v4/objects/tickets/{ticketId}/associations/company

JNallareddy
Participant

Hi @MrJustinGivens 
Thank you for the reply.

 

Q1)But i need to know tickets that are modified within a specific range of time. The time range should be mentioned by us.

 

Q2)for example i have 1L tickets, to know the association for that do i need to hit 1L apis only for contacts?

0 Upvotes
MrJustinGivens
Solution
Top Contributor | Platinum Partner
Top Contributor | Platinum Partner

@JNallareddy Then you need to use the search API for tickets.

 

/crm/v3/objects/tickets/search

 

You can then filter off the last modified time or other properties. 

JNallareddy
Participant

Hi @MrJustinGivens 
Thank you for the solution!!
I have one more question
I need to know the association for between contacts , Tickets , compnaies in one API instead hitting indivisual api for every ticket ID.

0 Upvotes