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_vendor
Obtain information about Vendors stored in the FreshService instance.
Examples
List all vendors
select id, name, descriptionfrom freshservice_vendor;
Get a specific vendor
select name, description, line1 as street, city, state, zipcode, countryfrom freshservice_vendorwhere id = 296358410;
Schema for freshservice_vendor
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
city | text | Name of the city. | |
country | text | Name of the country. | |
created_at | timestamp with time zone | Timestamp at which the vendor was created. | |
description | text | Description of the vendor. | |
id | bigint | = | ID of the vendor. |
line1 | text | Address line 1. | |
name | text | Name of the vendor. | |
primary_contact_id | bigint | User ID of the primary contact. | |
state | text | Name of the state. | |
updated_at | timestamp with time zone | Timestamp at which the vendor was last updated. | |
zipcode | text | Zip (postal) code of the location. |