theapsgroup/freshservice
steampipe plugin install theapsgroup/freshservice

Table: freshservice_vendor

Obtain information about Vendors stored in the FreshService instance.

Examples

List all vendors

select
id,
name,
description
from
freshservice_vendor;

Get a specific vendor

select
name,
description,
line1 as street,
city,
state,
zipcode,
country
from
freshservice_vendor
where
id = 296358410;

Schema for freshservice_vendor

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
citytextName of the city.
countrytextName of the country.
created_attimestamp with time zoneTimestamp at which the vendor was created.
descriptiontextDescription of the vendor.
idbigint=ID of the vendor.
line1textAddress line 1.
nametextName of the vendor.
primary_contact_idbigintUser ID of the primary contact.
statetextName of the state.
updated_attimestamp with time zoneTimestamp at which the vendor was last updated.
zipcodetextZip (postal) code of the location.