Contact Zapier resource
Reference the Zapier resource fields GovTribe sends for contact records.
The Contact resource is the Zapier representation of GovTribe contact records. Use this reference when you need to understand which Contact fields a Zap can receive from GovTribe.
Hooks and triggers
| Trigger | Source | Event or input | What it returns |
|---|---|---|---|
| New or Updated Contact | Contact resource hook | Subscribes to new_or_updated_contact | Contact records sent from GovTribe. |
| New Results for Contact Saved Search | Contact saved-search trigger | Requires saved_search_model_id | Contact records from the selected saved search. |
Fields
| Field | Type | Attribute |
|---|---|---|
resource_type | string | GovTribe type |
id | string | GovTribe ID |
name | string | Name |
email | string | |
title | string | Title |
role | string | Role |
types[] | string | Types |
referenceTypes[] | string | Types |
phone | string | Phone |
first_seen | datetime | Created at |
last_seen | datetime | Updated at |
ai_description | string | GovTribe AI summary |
point_of_contact_references_count | integer | Contact attribute |
description_references_count | integer | Description |
government_file_references_count | integer | Government files |
transaction_contact_references_count | integer | Contact attribute |
contact_groups[]resource_type | string | GovTribe type |
contact_groups[]id | string | GovTribe ID |
contact_groups[]name | string | Name |
contact_groups[]description | string | Description |
contact_groups[]url | string | GovTribe URL |
tags[]resource_type | string | GovTribe type |
tags[]id | string | GovTribe ID |
tags[]name | string | Name |
organization__resource_type | string | GovTribe type |
organization__id | string | GovTribe ID |
organization__name | string | Name |
organization__url | string | GovTribe URL |
Example resource
{
"resource_type": "contact",
"id": "CONTACT_ID",
"name": "A Person",
"email": "contact@example.com",
"title": "Contracting Officer",
"role": "Information Technology",
"types": [
"Government"
],
"referenceTypes": [
"Opportunity Description",
"Government File",
"Opportunity POC",
"Award POC"
],
"phone": "555-555-5555",
"first_seen": "2025-01-01T00:00:00-05:00",
"last_seen": "2025-01-01T00:00:00-05:00",
"ai_description": "Representative description text.",
"point_of_contact_references_count": 2,
"description_references_count": 3,
"government_file_references_count": 6,
"transaction_contact_references_count": 6,
"contact_groups": [
{
"resource_type": "contact-group",
"id": "CONTACT_GROUP_ID",
"name": "My Contact Group",
"description": "Representative description text.",
"url": "https://govtribe.com/workspace/WORKSPACE_ID/contact-group/CONTACT_GROUP_ID"
}
],
"tags": [
{
"resource_type": "tag",
"id": "TAG_ID",
"name": "tag"
}
],
"organization": {
"resource_type": "federal-agency",
"id": "FEDERAL_AGENCY_ID",
"name": "Federal Agency",
"url": "https://govtribe.com/agency/federal-agency/federal-agency"
}
}Related articles
- Contact data type: Review the GovTribe data type behind Contact resource payloads.