Update Project Exchange Rates
update_project_exchange_ratesUpdate existing project exchange rates in bulk. Provide the rate IDs from a prior GET; only fields you include are changed. Use is_active to soft-delete or reactivate.
Instructions
Updates existing project exchange rates in bulk. Requires the project to have multicurrency enabled. Each item in the exchange_rates array must include an integer id from a prior GET response; other fields are optional and only modified when present. Use is_active to soft-delete or reactivate a rate without losing its audit history. When project rates are synced with company rates, the rate values are computed automatically and the API-supplied exchange_rate is ignored. Send only the fields you intend to change; omitted fields keep their current values. company_id and project_id default to the values set by procore_set_config when omitted. Returns the modified project exchange rate on success. 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, exchange_rates. Procore API: Construction Financials > Currency Configurations. Endpoint: PATCH /rest/v1.0/companies/{company_id}/projects/{project_id}/currency_configuration/exchange_rates
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 whose exchange rates are being queried or modified. Obtainable from GET /rest/v1.0/companies/{company_id}/projects. | |
| exchange_rates | Yes | JSON request body field — array of existing exchange rates to update. Each item must include the integer `id` of the rate being updated; other fields are optional and only updated if present. |