GovTribe

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

TriggerSourceEvent or inputWhat it returns
New or Updated StageStage resource hookSubscribes to new_or_updated_stageStage records sent from GovTribe.

Fields

FieldTypeAttribute
resource_typestringGovTribe type
idstringGovTribe ID
namestringName
descriptionstringDescription
typestringType
created_atdatetimeCreated at
updated_atdatetimeUpdated at
pursuits_countnumberPursuit
estimated_valuenumberEstimated value
probable_valuenumberPursuit
pipeline__resource_typestringGovTribe type
pipeline__idstringGovTribe ID
pipeline__namestringName
pipeline__descriptionstringDescription
pipeline__urlstringGovTribe URL
pipeline__created_atdatetimeCreated at
pipeline__updated_atdatetimeUpdated at
creator__resource_typestringGovTribe type
creator__idstringGovTribe ID
creator__namestringName
creator__emailstringEmail
owner__resource_typestringGovTribe type
owner__idstringGovTribe ID
owner__namestringName
owner__emailstringEmail
workspace__resource_typestringGovTribe type
workspace__idstringGovTribe 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
}
  • Stage: Review the GovTribe data type behind Stage resource payloads.