Stage Zapier resource
Reference the Zapier resource fields GovTribe sends for stage records.
The Stage resource is the Zapier representation of GovTribe stage records. Use this reference when you need to understand which Stage fields a Zap can receive from GovTribe.
Hooks and triggers
| Trigger | Source | Event or input | What it returns |
|---|---|---|---|
| New or Updated Stage | Stage resource hook | Subscribes to new_or_updated_stage | Stage records sent from GovTribe. |
Fields
| Field | Type | Attribute |
|---|---|---|
resource_type | string | GovTribe type |
id | string | GovTribe ID |
name | string | Name |
description | string | Description |
type | string | Type |
created_at | datetime | Created at |
updated_at | datetime | Updated at |
pursuits_count | number | Pursuit |
estimated_value | number | Estimated value |
probable_value | number | Pursuit |
pipeline__resource_type | string | GovTribe type |
pipeline__id | string | GovTribe ID |
pipeline__name | string | Name |
pipeline__description | string | Description |
pipeline__url | string | GovTribe URL |
pipeline__created_at | datetime | Created at |
pipeline__updated_at | datetime | Updated at |
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": "stage",
"id": "STAGE_ID",
"name": "Won",
"description": "Representative description text.",
"type": "terminal",
"created_at": "2024-09-27T15:47:06-04:00",
"updated_at": "2024-09-27T15:47:06-04:00",
"pipeline": {
"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:47:06-04:00",
"updated_at": "2024-09-27T15:47:06-04:00"
},
"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"
},
"pursuits_count": 0,
"estimated_value": 0,
"probable_value": 0
}Related articles
- Stage: Review the GovTribe data type behind Stage resource payloads.