Get the budget of a project using the following logic:

  • If the Project has a timeframe, the last budget-milestone within the timeframe is returned.
  • If the Project has no timeframe, the very last budget-milestone is returned.
  • If the Project has no budget-milestones, then the fixed budget is returned, if it exists.
  • If none of the above applies, “204 No Content” is returned.

Required Scopes:

  • projects:view

External Documentation

To learn more, visit the Tempo documentation.

Parameters

ParameterDescription
Project IDThe ID of the project.

Example Output

{
	"amount": {
		"currencyCode": "USD",
		"value": 1234.56
	},
	"self": "https://api.tempo.io/4/projects/dd442e10-75d1-4b80-9be3-9d1293ad23b9/budget"
}

Workflow Library Example

Get Project Budget with Tempo and Send Results Via Email

Preview this Workflow on desktop