Integrations connect Gorgias with external services (e.g. Gmail, Shopify, chat systems).
There are official Gorgias integrations that can be found in the Integrations page in the helpdesk and there are custom HTTP integrations.
Most integrations use HTTP APIs.
Integration properties
Integration example object
{
"id": 123,
"created_datetime": "2021-01-07T13:00:00.123456",
"http": {
"id": 987,
"url": "https://company.com/api/customers?email={{ticket.customer.email}}",
"method": "GET",
"form": {
"hello": "world",
"ticket_id": "{{ticket.id}}"
},
"triggers": {
"ticket_created": true,
"ticket_updated": true,
"ticket_message_created": true,
"ticket_self_unsnoozed": true
},
"request_content_type": "application/json",
"response_content_type": "application/json"
},
"name": "My HTTP integration",
"type": "http",
"updated_datetime": "2021-01-07T13:00:00.123456",
"uri": "/api/integrations/123/"
}