You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+14
Original file line number
Diff line number
Diff line change
@@ -48,11 +48,25 @@ Now the available API calls can be done using the instance. All the result from
48
48
49
49
**Please refer to [https://developers.supportbee.com/api](https://developers.supportbee.com/api) for avaialble parameter details.**
50
50
51
+
Incase of multiple paramters : Pass as an associative array.
52
+
All method names follow Camel Casing.
53
+
51
54
52
55
### Ticket
53
56
1.*tickets* - Returns 15 tickets of the company in the order of their last activity. Only tickets that are not archived are returned (please see optional parameters to get archived tickets).
54
57
2.*ticket* - Retrieves the ticket specified by the id.
55
58
3.*searchTickets* - Returns 15 tickets of the company in the order of their last activity matching the search query.
59
+
4.*createTickets* - Creates a ticket for the company. Pass the information for ticket as associative array.
60
+
5.*deleteTicket* - Deletes a trashed ticket. Only Admins can delete a trashed ticket.
61
+
6.*archiveTicket* - Archives an unarchived ticket.
62
+
7.*unarchiveTicket* - Un-archives an archived ticket.
63
+
8.*assignTicket* - Assign a ticket to a User or Group. The first paramter is the ticket id. The second paramter is an associative arry with index as user_id if the ticket is to be assigned to an user and group_id if the ticket is to be assigned to a group.
64
+
9.*starTicket* - Stars an un-starred ticket.
65
+
10.*unstarTicket* - Un-stars a starred ticket.
66
+
11.*spamTicket* - Spam's an un-spammed ticket.
67
+
12.*unspamTicket* - Un-spam a spammed ticket.
68
+
13.*trashTicket* - Trashes an un-trashed ticket.
69
+
14.*untrashTicket* - Un-trashes a trashed ticket.
56
70
57
71
### Reply
58
72
1.*replies* - Retrieves all the replies of the ticket with id ticket_id.
0 commit comments