freshservice_agentfreshservice_agent_rolefreshservice_announcementfreshservice_assetfreshservice_asset_componentfreshservice_asset_contractfreshservice_asset_typefreshservice_business_hourfreshservice_changefreshservice_change_notefreshservice_contractfreshservice_contract_typefreshservice_departmentfreshservice_locationfreshservice_problemfreshservice_problem_notefreshservice_problem_taskfreshservice_problem_timeentryfreshservice_productfreshservice_purchase_orderfreshservice_releasefreshservice_release_notefreshservice_release_taskfreshservice_release_timeentryfreshservice_requesterfreshservice_servicefreshservice_sla_policyfreshservice_softwarefreshservice_software_installationfreshservice_software_userfreshservice_solution_articlefreshservice_solution_categoryfreshservice_solution_folderfreshservice_ticketfreshservice_ticket_conversationfreshservice_ticket_taskfreshservice_ticket_timeentryfreshservice_vendor
Table: freshservice_ticket_conversation
Allows for obtaining information on conversations for a specific Ticket.
You MUST specify a ticket_id
in the WHERE
or JOIN
clause.
Examples
List all conversations on a specific Ticket
select *from freshservice_ticket_conversationwhere ticket_id = 2010101010;
Schema for freshservice_ticket_conversation
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
attachments | jsonb | Attachments associated with the conversation. | |
body | text | Content of the conversation in HTML. | |
body_text | text | Content of the conversation in plain text. | |
created_at | timestamp with time zone | Timestamp when the conversation was created. | |
id | bigint | ID of the conversation. | |
incoming | boolean | Set to true if a particular conversation should appear as being created from the outside (i.e., not through the web portal). | |
private | boolean | Set to true if private. | |
source | text | Denotes the type of the conversation. | |
support_email | text | Email address from which the reply is sent. | |
ticket_id | bigint | = | ID of the ticket to which this conversation belongs. |
to_emails | jsonb | Email addresses of agents/requesters who need to be notified about this conversation. | |
updated_at | timestamp with time zone | Timestamp when the conversation was last updated. | |
user_id | bigint | User ID of the agent or requester who is adding the conversation. |