Skip to content

Groove

With Groove modules in Ibexa Connect, you can watch, create, update, search, retrieve, and delete:

  • create, retrieve, and search tickets, update and retrieve ticket's state, update and retrieve assignee, add labels to tickets, and replace all labels on a ticket

  • upload a file

  • watch ticket event, customer event. message event and agent event

To get started with Groove, create an account at groovehq.com.

Connect Groove to Ibexa Connect

To connect Groover app, you need to obtain the OAuth client credentials.

  1. Log in to your Groove account.

  2. Click Settings > Webhooks & API.

  3. Click API and copy the Global token to a safe place.

    groove-2.png

  4. Log in to your Ibexa Connect account, insert a Groove module scenario and click the Add button next to the Connection field.

    groove-1.gif

  5. In the Connection name field, enter a name for the connection.

  6. In the Access Token field, enter the details copied in step 3 and click Save.

You have successfully connected the Groove app and can now build scenarios.

Tickets

You can create, retrieve, and search tickets, update and retrieve a ticket's state, update and retrieve assignee, add labels to tickets, and replace all labels on a ticket using the following modules.

Create a Ticket

Creates a ticket.

For field descriptions, see the Groove Tickets API reference.

Update a Ticket's State

Updates a ticket's state.

Ticket Number Select or map a Ticket Number whose state you want to update.
State Select the ticket's status. For example, unread.

Update a Ticket Assignee

Updates a ticket's assignee.

Ticket Number Select or map a Ticket Number whose assignee you want to update.
Assignee Enter the email of the agent to assign the ticket.

Update a Ticket's Assigned Group

Updates a ticket's assigned group.

Ticket Number Select or map a Ticket Number whose assigned group you want to update.
Group ID Select or map the Group ID to assign the ticket.

Add Labels to a Ticket

Adds labels to a ticket.

Ticket Number Select or map the ticket number to which you want to add labels.
Tags Enter the comma-separated list of labels you want to add to the ticket. For example, news.

Replace All Labels on a Ticket

Replaces all labels on a ticket.

Ticket Number Select or map a ticket number whose labels you want to replace.
Tags Enter a new set of labels for the ticket. For example, replacement.

Get a Ticket

Gives information about a ticket.

Ticket Number Select or map the ticket number whose details you want to retrieve.

Get a Ticket's State

Gets a ticket's state.

Ticket Number Select or map the ticket number whose status details you want to retrieve.

Get a Ticket's Assignee

Gets a ticket's assignee.

Ticket Number Select or map the ticket number whose assignee details you want to retrieve.

Search Tickets

Searches for tickets.

Limit Set the maximum number of tickets Ibexa Connect will return during one execution cycle. The default value is 10.

See Groove Tickets API reference for entering the field values to search the tickets that match the specified value.

Attachments

You can upload a file using the following modules.

Upload a File

Sends a single binary file, which is supported by most clients.

Message ID

Select or map a Message ID whose file you want to upload.

File

Enter the file details:

Filename

Enter a name for the file. For example, image.jpg.

File Data

Enter the file content type. For example, image/jpeg.

Events

You can watch ticket events, customer events, message events, and agent events using the following modules.

Note

Ibexa Connect automatically creates a webhook in Groove once you add an instant trigger to your scenario.

Watch Ticket Event

Triggers when a new ticket event occurs.

Webhook name Enter a name for the webhook.
Event Select the event to watch. For example, closed.

Watch Customer Event

Triggers when a new customer event occurs.

Webhook name Enter a name for the webhook.
Event Select an event to watch. For example, added.

Watch Message Event

Triggers when a new message event occurs.

Webhook name Enter a name for the webhook.
Event Select an event to watch. For example, replied.

Watch Agent Event

Triggers when a new agent event occurs.

Webhook name Enter a name for the webhook.
Event Select an event to watch. For example, invited.

Other

You can call APIs using the following module.

Make an API Call

Perform an arbitrary authorized API call.

Note

For the list of available endpoints, refer to the Groove API documentation.

URL

Enter a path relative to https://api.groovehq.com. For example: /v1/tickets.

Method

GET

to retrieve information for an entry.

POST

to create a new entry.

PUT

to update/replace an existing entry.

PATCH

to make a partial entry update.

DELETE

to delete an entry.

Headers

Enter the desired request headers. You don't have to add authorization headers; we already did that for you.

Query String

Enter the request query string.

Body

Enter the body content for your API call.

Example of use - Search Tickets

The following API call returns all tickets from your account.

URL: /v1/tickets

Method: GET

groove_4.png

The search matches can be found in the module's Output under Bundle > Body > tickets.

In our example 5 tickets were returned:

groove_3.png