Pipeline Zapier resource
Reference the Zapier resource fields GovTribe sends for pipeline records.
The Pipeline resource is the Zapier representation of GovTribe pipeline records. Use this reference when you need to understand which Pipeline fields a Zap can receive from GovTribe.
Hooks and triggers
| Trigger | Source | Event or input | What it returns |
|---|---|---|---|
| New or Updated Pipeline | Pipeline resource hook | Subscribes to new_or_updated_pipeline | Pipeline records sent from GovTribe. |
Fields
| Field | Type | Attribute |
|---|---|---|
resource_type | string | GovTribe type |
id | string | GovTribe ID |
name | string | Name |
description | string | Description |
url | string | GovTribe URL |
created_at | datetime | Created at |
updated_at | datetime | Updated at |
active_pursuits_count | number | Pursuit |
active_estimated_value | number | Estimated value |
active_probable_value | number | Pursuit |
won_pursuits_count | number | Pursuit |
won_estimated_value | number | Estimated value |
won_probable_value | number | Pursuit |
lost_pursuits_count | number | Pursuit |
lost_estimated_value | number | Estimated value |
lost_probable_value | number | Pursuit |
abandoned_pursuits_count | number | Pursuit |
abandoned_estimated_value | number | Estimated value |
abandoned_probable_value | number | Pursuit |
tags[]resource_type | string | GovTribe type |
tags[]id | string | GovTribe ID |
tags[]name | string | Name |
creator__resource_type | string | GovTribe type |
creator__id | string | GovTribe ID |
creator__name | string | Name |
creator__email | string | |
owner__resource_type | string | GovTribe type |
owner__id | string | GovTribe ID |
owner__name | string | Name |
owner__email | string | |
workspace__resource_type | string | GovTribe type |
workspace__id | string | GovTribe ID |
Example resource
{
"resource_type": "pipeline",
"id": "PIPELINE_ID",
"name": "Pipeline",
"description": "Representative description text.",
"url": "https://govtribe.com/workspace/WORKSPACE_ID/pipeline/PIPELINE_ID",
"created_at": "2024-09-27T15:43:27-04:00",
"updated_at": "2024-09-27T15:43:27-04:00",
"active_pursuits_count": 0,
"active_estimated_value": 0,
"active_probable_value": 0,
"won_pursuits_count": 0,
"won_estimated_value": 0,
"won_probable_value": 0,
"lost_pursuits_count": 0,
"lost_estimated_value": 0,
"lost_probable_value": 0,
"abandoned_pursuits_count": 0,
"abandoned_estimated_value": 0,
"abandoned_probable_value": 0,
"tags": [
{
"resource_type": "tag",
"id": "TAG_ID",
"name": "tag"
}
],
"creator": {
"resource_type": "user",
"id": "USER_ID",
"name": "GovTribe User",
"email": "contact@example.com"
},
"owner": {
"resource_type": "user",
"id": "USER_ID",
"name": "GovTribe User",
"email": "contact@example.com"
},
"workspace": {
"resource_type": "workspace",
"id": "WORKSPACE_ID"
}
}Related articles
- Pipeline: Review the GovTribe data type behind Pipeline resource payloads.