# Gorgias [Gorgias](https://www.gorgias.com/) is a helpdesk for e-commerce merchants, providing customer service via email, social media, SMS, and live chat. omniload supports Gorgias as a source. ## URI format The URI format for Gorgias is as follows: ```text gorgias://?api_key=&email= ``` URI parameters: - `domain`: the domain of the Gorgias account without the full `gorgias.com`, e.g. `mycompany` - `api_key`: the integration token used for authentication with the Gorgias API - `email`: the email address of the user to connect to the Gorgias API The URI is used to connect to the Gorgias API for extracting data. ## Examples ```bash # get all the tickets that are created/updated since 2024-06-19 and write them to `gorgias.ticket_messages` table on BigQuery omniload ingest --source-table 'tickets' --source-uri $GORGIAS_URI --dest-uri $BIGQUERY_URI --interval-start 2024-06-19 --dest-table 'gorgias.ticket_messages' --loader-file-format jsonl # get all the customers and write them to `gorgias.customers` table on DuckDB omniload ingest --source-table 'customers' --source-uri $GORGIAS_URI --dest-uri duckdb:///gorgias.duckdb --interval-start 2024-01-01 --dest-table 'dest.customers' ``` Gorgias source allows ingesting the following sources into separate tables: | Table | PK | Inc Key | Inc Strategy | Details | | --------------- | ----------- | --------------- | ------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | | [customers](https://developers.gorgias.com/reference/list-customers) | id | updated_datetime | merge | Customers are the users who have interacted with the support team. Each customer has a unique ID and contains information such as the name and email. Retrieves customers lists| | [tickets](https://developers.gorgias.com/reference/list-tickets) | id | updated_datetime | merge | Tickets are the main entity in Gorgias, representing customer inquiries. Each ticket has a unique ID and contains information such as the customer, status, and messages. Retrieves tickets lists | | [ticket_messages](https://developers.gorgias.com/reference/list-messages) | id | updated_datetime | merge | Ticket messages are the messages exchanged between the customer and the support agent in a ticket. Each message has a unique ID and contains information such as the sender, content, and timestamp. Retrieves messages lists | | [satisfaction_surveys](https://developers.gorgias.com/reference/list-satisfaction-surveys) | id | updated_datetime | merge | Satisfaction surveys are sent to customers after a ticket is resolved to gather feedback on their experience. Each survey has a unique ID and contains information such as the rating and comments. Retrieves surveys lists.| Use these as `--source-table` parameter in the `omniload ingest` command.