Get Project Currency Configuration
get_project_currency_configurationRetrieve the currency configuration for a specified Procore project, including company eligibility and toggle defaults even when unconfigured. Returns full field set or flags unconfigured state without a 404.
Instructions
Returns the currency configuration for the specified project. When no configuration has been created yet, currency-related fields are returned as null while company eligibility and toggle defaults are still populated, so consumers can detect the unconfigured state without a 404. Use this when you already know which project currency configuration you want and need its full field set. company_id and project_id default to the values set by procore_set_config when omitted. Returns a single JSON object describing the project currency configuration. Read-only — it changes nothing in Procore. Failures come back as an error payload carrying the HTTP status — commonly 401 when the token has expired, 403 without tool permission, and 404 when an id does not resolve. Required parameters: company_id, project_id. Procore API: Construction Financials > Currency Configurations. Endpoint: GET /rest/v1.0/companies/{company_id}/projects/{project_id}/currency_configuration
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| company_id | Yes | URL path parameter — integer ID of the Procore company that owns the project. Obtainable from GET /rest/v1.0/companies. | |
| project_id | Yes | URL path parameter — integer ID of the Procore project. Obtainable from GET /rest/v1.0/companies/{company_id}/projects. Identifies which project's currency configuration to act on. |