GovTribe

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

TriggerSourceEvent or inputWhat it returns
New or Updated PipelinePipeline resource hookSubscribes to new_or_updated_pipelinePipeline records sent from GovTribe.

Fields

FieldTypeAttribute
resource_typestringGovTribe type
idstringGovTribe ID
namestringName
descriptionstringDescription
urlstringGovTribe URL
created_atdatetimeCreated at
updated_atdatetimeUpdated at
active_pursuits_countnumberPursuit
active_estimated_valuenumberEstimated value
active_probable_valuenumberPursuit
won_pursuits_countnumberPursuit
won_estimated_valuenumberEstimated value
won_probable_valuenumberPursuit
lost_pursuits_countnumberPursuit
lost_estimated_valuenumberEstimated value
lost_probable_valuenumberPursuit
abandoned_pursuits_countnumberPursuit
abandoned_estimated_valuenumberEstimated value
abandoned_probable_valuenumberPursuit
tags[]resource_typestringGovTribe type
tags[]idstringGovTribe ID
tags[]namestringName
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": "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"
  }
}
  • Pipeline: Review the GovTribe data type behind Pipeline resource payloads.