Procore MCP Server
The Procore MCP Server exposes Procore's construction management REST API to AI assistants, enabling discovery, configuration, and execution of operations across 2,636+ endpoints covering project management, financials, workflows, and administration.
API Discovery & Execution
Browse API categories, discover and search all endpoints, and retrieve full parameter/response schemas
Execute any Procore REST API call (GET, POST, PUT, PATCH, DELETE) with support for pagination, path/query parameters, and request bodies
View auth status and set runtime configuration (e.g.,
company_id,project_id)
Workflow Management
List, create, get, restart, terminate, and bulk-create workflow instances (company & project level)
Manage workflow templates, versioned configurations, and presets
Manage assignees, workflow managers, and respond to or view history of workflow instances
Webhooks
List webhook resources and triggers at company and project levels
Create, delete, and bulk manage webhook triggers
Project Management
Submittals – List and filter project submittals
Specifications – Configure tools, manage areas, distribution groups and members
Punch List – Filter by assignee, creator, location, type, trade, ball-in-court, final approver, and more
Inspections – View and update inspection template item evidence configurations
Tasks – List distribution member options and defaults for task items
Project Dates – List project milestone and key dates
Project Directory – Bulk remove project memberships
Construction Financials
Prime Contracts – List, create, show, update, delete, and generate PDF exports
Requisitions – Update due dates for subcontractor invoices
Compliance – List, create, get, update, and delete requisition compliance documents and attachments
Units of Measure – Retrieve UOM master list configurations
Company Administration
Roles – List, create, update, delete, and reorder company roles
Support Pins – Fetch active support pins and create new ones
Procore MCP Server
MCP server that exposes the full Procore REST API to AI assistants like Claude. Built with TypeScript and the Model Context Protocol SDK.
Works with Claude Desktop, Claude Code, and any MCP-compatible client.
What it does
A build-time parser converts Procore's OpenAPI spec into a compact catalog, then auto-generates individual MCP tools for every API operation. At runtime, 7 meta-tools let the AI discover and call any Procore endpoint:
Tool | Purpose |
| List API categories with endpoint counts |
| List endpoints in a category |
| Full-text search across all endpoints |
| Get full parameter schema for an endpoint |
| Execute any Procore API call |
| Show current config and auth status |
| Set runtime config (company_id, project_id) |
Related MCP server: mcp-clickup
Prerequisites
Node.js 18+
A Procore Developer Portal account
An OAuth app with Authorization Code grant type
Set your redirect URI to
http://localhost
Setup
git clone https://github.com/TylerIlunga/procore-mcp-server.git
cd procore-mcp-server
npm installCopy the example env file and fill in your credentials:
cp .env.example .envPROCORE_CLIENT_ID=your_client_id
PROCORE_CLIENT_SECRET=your_client_secret
PROCORE_COMPANY_ID=your_company_idBy default the server exposes the 7 discovery tools, and every Procore
endpoint is reached through procore_api_call. Registering a dedicated tool
per endpoint instead emits roughly 4.7 MB (~1.2M tokens) of tool definitions —
more than any current model's context window — so that surface is opt-in:
PROCORE_TOOL_MODE=allCoverage is identical in both modes; only the size of the advertised tool list
differs. If you switch to all and are migrating from before v2.0.0, see
data/tool-renames.json for the old -> new tool name map.
You'll need Procore's OpenAPI spec file placed at specs/combined_OAS.json. This file is not included in the repo due to its size (~54MB). You can obtain it from Procore's API documentation.
Build the catalog and compile TypeScript:
npm run buildAuthenticate with Procore (opens browser for OAuth):
npm run authStart the server:
npm startClaude Desktop configuration
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"procore": {
"command": "node",
"args": ["/absolute/path/to/procore-mcp-server/dist/src/index.js"],
"env": {
"PROCORE_CLIENT_ID": "your_client_id",
"PROCORE_CLIENT_SECRET": "your_client_secret",
"PROCORE_COMPANY_ID": "your_company_id"
}
}
}
}Claude Code configuration
Add to .mcp.json in your project root:
{
"mcpServers": {
"procore": {
"command": "node",
"args": ["/absolute/path/to/procore-mcp-server/dist/src/index.js"],
"env": {
"PROCORE_CLIENT_ID": "your_client_id",
"PROCORE_CLIENT_SECRET": "your_client_secret",
"PROCORE_COMPANY_ID": "your_company_id"
}
}
}
}Project structure
src/
auth/ OAuth token exchange, refresh, storage
api/ HTTP client with auth, rate limits, retries
catalog/ Endpoint catalog loading, search, filtering
tools/ MCP tool handlers and registration
scripts/
generate-catalog.ts Parse OAS into catalog
generate-tools-manifest.ts Generate per-endpoint MCP tools
validate-catalog.ts Validate catalog integrity
data/ Build output (committed): catalog.json, endpoint details, tools manifest
specs/ Source OAS file (gitignored — too large for the repo)How it works
Build time:
scripts/generate-catalog.tsparses the ~54MB Procore OpenAPI spec (3,155 operations) and produces a compactdata/catalog.jsonplus individual endpoint detail files indata/endpoint-details/.scripts/generate-tools-manifest.tsthen generates a tools manifest with one named MCP tool per API operation — 2,929 in total, after collapsing older-version duplicates of the same path.Each generated tool carries a structured description covering what it acts on, when to reach for it, which parent ids to resolve first, what it returns, and how it fails. Endpoints Procore has deprecated are registered with their sunset date in the description and a
(Deprecated)title. The interactive/oauth/*endpoints are not registered as tools —npm run authowns that flow — but remain reachable throughprocore_api_call.Auth: Run
npm run authonce to complete the OAuth flow in your browser. Tokens are saved to~/.procore-mcp/tokens.jsonand auto-refresh when expired.Runtime: The MCP server loads the catalog and registers the 7 discovery tools (plus the full per-endpoint surface when
PROCORE_TOOL_MODE=all). When an AI assistant calls a tool, the server maps it to the correct Procore API endpoint, injects auth headers, handles rate limits and pagination, and returns the response.
Inspiration
Built to help my girlfriend, a construction engineer who uses Procore daily.
License
MIT
Available Tools
7 toolsprocore_api_callExecute Any Procore API CallADestructive
Executes any Procore REST API call. This is the only tool here that reaches Procore and the only one that can change data — resolve the exact method, path, and parameters with procore_get_endpoint_details first. WRITES ARE REAL: DELETE permanently removes the record, POST creates one, and PATCH/PUT overwrite fields, so confirm the target id before calling and prefer a GET to verify it exists. Handles OAuth from the saved tokens, substitutes {placeholders} from path_params, and rewrites double underscores in query keys into brackets (filters__status becomes filters[status]). company_id and project_id fall back to whatever procore_set_config holds when the path needs them and you omit them. Returns the parsed JSON response together with pagination and rate-limit metadata. Failures come back as an error payload carrying the HTTP status — commonly 401 when the token has expired, 403 without tool permission, 404 when an id does not resolve, 422 when the body fails validation, and 429 when the rate limit is exhausted. Step 4 of the workflow; this reaches every Procore endpoint, including any not exposed as a dedicated tool.
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | JSON request body for POST/PUT/PATCH. Use the exact field names and nesting from procore_get_endpoint_details; ignored on GET and DELETE. | |
| page | No | 1-indexed page number for paginated endpoints (default 1) | |
| path | Yes | API path with placeholders left intact, e.g. '/rest/v1.0/projects/{project_id}/rfis'. Supply the values via path_params rather than interpolating them here. | |
| method | Yes | HTTP method for the endpoint, exactly as reported by the discovery tools | |
| per_page | No | Items per page, 1-100 (default 100) | |
| company_id | No | Overrides the Procore-Company-Id header for this call only; defaults to the configured company | |
| path_params | No | Values substituted into the path's {placeholders}, e.g. { project_id: '12345' }. Required whenever the path contains a placeholder that procore_set_config does not already supply. | |
| query_params | No | Query-string parameters. Use double underscores for Procore's bracket syntax: filters__status becomes filters[status]. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare destructiveHint=true and readOnlyHint=false, but the description adds far richer detail: exactly what each method does ('DELETE permanently removes the record, POST creates one, PATCH/PUT overwrite fields'), OAuth handling, placeholder substitution, and a full error taxonomy (401/403/404/422/429). No contradiction with annotations; description goes well beyond the structured fields.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Front-loaded with the core purpose and mutation warning, then efficiently covers conventions, return format, and error codes. Every sentence carries information; for a generic executor of this complexity the length is justified, though it edges toward dense and could be slightly tightened.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema and 8 parameters, the description carries full burden and delivers: return format ('parsed JSON response together with pagination and rate-limit metadata'), failure payload semantics with HTTP status explanations, destructive consequences, and fallback behavior. Highly complete for a complex generic tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3, but the description adds genuine extra semantics: explains the double-underscore-to-bracket rewrite (filters__status becomes filters[status]), how {placeholders} get substituted from path_params, and the company_id/project_id fallback to procore_set_config. These conventions are not in the schema and materially help correct invocation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States the specific verb+resource: 'Executes any Procore REST API call' with a clear scope ('the only tool here that reaches Procore'). Strongly distinguishes from siblings by noting it is the only data-mutating tool and that it reaches endpoints 'not exposed as a dedicated tool.'
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly directs the agent to 'resolve the exact method, path, and parameters with procore_get_endpoint_details first' and gives concrete when-to-use guidance: prefers a GET to verify the target id exists before destructive calls. Names the workflow position ('Step 4') and alternative tool, making selection unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
procore_discover_categoriesDiscover Procore API CategoriesARead-onlyIdempotent
Lists Procore's API surface as a Category > Module tree with an endpoint count for each. Start here when you do not yet know which part of Procore holds the data you need; if you already know the resource by name ('RFI', 'budget'), procore_search_endpoints gets you there in one step instead of three. The category and module names returned are the exact values procore_discover_endpoints expects. Takes no arguments and returns a JSON object. Reads the catalog bundled with this server, so it makes no Procore request and needs no authentication — it cannot fail with 401/403 and costs no rate limit. Step 1 of the discover -> detail -> call workflow.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnly, idempotent, and non-destructive. The description adds significant behavioral context beyond those hints: it makes no Procore request, needs no authentication, cannot fail with 401/403, costs no rate limit, and returns a JSON object. It also connects the returned values to the expected inputs of procore_discover_endpoints, providing useful workflow behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Every sentence carries distinct value: the product description, when to use, the alternative tool, the output contract, the no-network behavior, and the workflow position. The content is front-loaded with the core purpose and then narrows to operational details, without repetition or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given a zero-parameter tool with no output schema, the description covers the complete context an agent needs: what is returned, how the output is used downstream, that authentication is unnecessary, and which sibling tool to use instead. It fully satisfies the discover -> detail -> call workflow, leaving no ambiguity about its role.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters, so schema coverage is complete by default. The description confirms this with 'Takes no arguments', and adds clarity about the plain JSON object return, though it could have been slightly more explicit about this being an empty input contract. Otherwise, no parameter information is missing.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Lists Procore's API surface as a Category > Module tree with an endpoint count.' It clearly distinguishes itself as the first step of a discovery workflow and explicitly differentiates from procore_search_endpoints, which is an alternative for when the resource name is already known.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives direct usage criteria: 'Start here when you do not yet know which part of Procore holds the data you need' and names the alternative when you do know the resource ('procore_search_endpoints gets you there in one step'). It also states it reads a bundled catalog, so it needs no authentication and costs no rate limit, which clarifies when to select it over network-calling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
procore_discover_endpointsDiscover Endpoints in a CategoryARead-onlyIdempotent
Lists the Procore endpoints inside one category or module, optionally narrowed by a summary substring or HTTP method. Use it after procore_discover_categories to enumerate a focused area; prefer procore_search_endpoints when you have a keyword but no category. Every argument is optional, but omitting all of them returns the entire ~3,100-endpoint catalog, so pass at least a category or a search term. Returns a JSON array of {operationId, summary, method, path}; feed an operationId to procore_get_endpoint_details. Filters that match nothing return an empty array, not an error. Reads the bundled catalog: no Procore request, no authentication, no rate-limit cost. Step 2 of the workflow.
| Name | Required | Description | Default |
|---|---|---|---|
| module | No | Module within the category, e.g. 'RFI', 'Submittals', 'Punch List'. Ignored unless category is also given. | |
| search | No | Case-insensitive substring matched against endpoint summary text; combine with category to narrow a large module | |
| category | No | Top-level category, exactly as returned by procore_discover_categories, e.g. 'Project Management', 'Core', 'Construction Financials' | |
| method_filter | No | Restrict results to a single HTTP method — useful to list only the reads (GET) in a module |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already state readOnly, idempotent, and non-destructive, and the description adds key behavioral context: it reads a bundled catalog, makes no network request, requires no authentication, and has no rate-limit cost. It also discloses the full-catalog fallback when all arguments are omitted and the empty-array behavior for no matches, going well beyond the structured annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is slightly long but every sentence earns its place: it covers purpose, workflow placement, sibling alternatives, argument warnings, return format, error behavior, and cost implications. It is front-loaded with the main action and then provides structured detail without redundancy or padding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description clearly states the return shape (JSON array of {operationId, summary, method, path}) and how to chain the result into procore_get_endpoint_details. It also documents the no-match empty-array behavior, the unbounded result risk, and the read-only/local nature, making the tool fully understandable for a four-optional-parameter, no-output-schema tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3, but the description adds meaningful parameter relationships not in the schema: module is ignored unless category is also given, all arguments are optional but at least one is recommended, and combining category with search narrows a large module. These extra constraints and usage hints improve parameter understanding beyond the field descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb ('Lists') and a clear resource ('Procore endpoints inside one category or module'), with optional narrowing by summary substring or HTTP method. It explicitly distinguishes itself from siblings by directing users to procore_search_endpoints when they have a keyword but no category, and to pass operationIds to procore_get_endpoint_details.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit when-to-use guidance: use after procore_discover_categories, prefer procore_search_endpoints for keyword-only searches, and avoid calling with no arguments because it returns the entire ~3,100-endpoint catalog. It also explains filter behavior (empty array on no match) and that it reads the bundled catalog, so it is the right choice when avoiding API cost.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
procore_get_configShow Server ConfigurationARead-onlyIdempotent
Reports this server's current state: whether Procore OAuth tokens are present and still valid, the default company_id, and the active project_id that procore_api_call substitutes when you omit those parameters. Check this first when a call fails with 401 or 403, or to confirm which project subsequent calls will target before running a write. Never returns token values or the client secret — only whether credentials are present. Takes no arguments and returns a JSON object. Reads local process state, so it makes no Procore request. Pair with procore_set_config to change any of it.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, but the description adds crucial behavioral context beyond that: it never returns token values or the client secret, it reads only local process state, and it does not send a Procore request. This fully covers the safety and privacy-relevant behavior that an agent needs.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Every sentence carries distinct value: output scope, when to use, what is withheld, no-arg behavior, return format/side-effect, and with which sibling to change values. It is front-loaded with the core purpose and remains compact despite conveying substantial guidance.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is complete for a zero-parameter, low-complexity read tool. It explains what is returned, what is not returned, how to use it in failure scenarios, and how to change the configuration via sibling procore_set_config. No output schema exists, but the summary of the JSON result is sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters, and the description confirms 'Takes no arguments.' With 100% schema coverage and no params, the baseline is high, and the explicit no-arguments statement removes any ambiguity about input requirements.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with the specific verb 'Reports this server's current state' and names the exact data it returns: OAuth token validity, default company_id, and active project_id. This clearly distinguishes it from siblings like procore_set_config (which changes values) and procore_api_call (which consumes them).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit guidance: 'Check this first when a call fails with 401 or 403, or to confirm which project subsequent calls will target before running a write.' It also names the related tool for mutation ('Pair with procore_set_config') and clarifies that it makes no Procore API request, so there is no confusion about side effects.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
procore_get_endpoint_detailsGet Full Endpoint DetailsARead-onlyIdempotent
Returns the complete parameter schema for one Procore endpoint: every path, query, and body field with its type and required flag, plus the response shape. Call this after discovery and before procore_api_call — api_call needs exact parameter names, and guessing them is the most common cause of a rejected request. Takes the operationId string that procore_discover_endpoints and procore_search_endpoints return; an unrecognized operation_id comes back as a not-found message rather than an error. Reads the bundled catalog: no Procore request, no authentication, no rate-limit cost. Step 3 of the workflow.
| Name | Required | Description | Default |
|---|---|---|---|
| operation_id | Yes | The exact operationId from procore_discover_endpoints or procore_search_endpoints, e.g. 'RestV10ProjectsProjectIdRfisGet'. Case-sensitive; not a URL path. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the safe-read nature is covered. The description adds valuable behavior: that it reads a bundled catalog (no Procore request, no auth, no rate-limit cost), that an unrecognized operation id returns a not-found message rather than an error, and that it returns a not-found response. It does not contradict annotations. While it doesn't detail the exact response structure (no output schema exists), but the description mentions 'response shape' as part of the payload, and the lack of cost/auth details are beyond what annotations provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, each earning its place: function, workflow position, parameter source, behavior on error, and side-effect-free nature. No wasted words. It front-loads the primary purpose and key constraint (matching parameter names).
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having no output schema, the description clearly outlines the return shape ('complete parameter schema ... plus the response shape'). It covers prerequisites, error behavior, side effects, and integration with sibling tools. Given the tool's simplicity (one param, read-only, no auth), this is complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% (1 param with description), but the description adds significant context beyond schema: it clarifies the parameter is the operationId from discovery/search tools, that it's case-sensitive and not a URL path. It also explains the consequence of an unrecognized value. This exceeds baseline 3, though it doesn't spell out exact format or validation rules beyond what's already in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it returns the complete parameter schema for a Procore endpoint, specifying path, query, body fields, and response shape. It distinguishes from siblings by tying to operationId from discovery tools and positioning as 'Step 3' of the workflow, differentiating from api_call, discover, and search functions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says 'Call this after discovery and before procore_api_call' and explains api_call needs exact parameter names. It also specifies the input ('operationId string that procore_discover_endpoints and procore_search_endpoints return') and how to handle non-matching IDs ('unrecognized operation_id comes back as a not-found message rather than an error'), providing both when and when-not to use it versus alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
procore_search_endpointsFull-Text Search Across EndpointsARead-onlyIdempotent
Searches every Procore endpoint's summary, tag, and path for a term and returns the matches ranked by relevance. This is the fastest way in when you already know roughly what you want ('punch list', 'submittal', 'budget line item'); reach for procore_discover_categories instead when you want to browse the API surface rather than search it. Returns a JSON array of {operationId, summary, method, path}; feed an operationId to procore_get_endpoint_details to get its parameters. A term with no matches returns an empty array, so retry with a broader or singular form before concluding the endpoint does not exist. Reads the bundled catalog: no Procore request, no authentication, no rate-limit cost.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search term matched against endpoint summaries, tags, and paths, e.g. 'RFI', 'budget', 'punch list'. Single keywords match more broadly than phrases. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly/idempotent/non-destructive, but the description adds critical context: it reads a bundled catalog with no network requests or rate-limit cost, and returns an empty array on no matches. This goes beyond annotations and clarifies operational behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact with every sentence adding value: purpose, usage, return format, edge case, and cost context. No redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple one-parameter tool with no output schema, the description fully covers behavior, return structure, alternatives, and caveats. Everything a caller needs to know is included.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with detailed parameter description, but the description adds a useful tip that 'single keywords match more broadly than phrases,' enriching semantic understanding beyond schema alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches all endpoint summaries, tags, and paths for a term and returns ranked matches. It uses specific verbs and resources, and explicitly contrasts with procore_discover_categories for browsing vs searching.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides explicit when-to-use guidance ('when you already know roughly what you want') and when-not-to (use procore_discover_categories for browsing). It also advises retrying with broader terms before concluding absence, giving actionable alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
procore_set_configSet Runtime Configuration ValueAIdempotent
Sets the default company_id or project_id that later procore_api_call requests use when the path needs one and you omit it. Use it to switch project context mid-session instead of restarting the server, then call procore_get_config to confirm what took effect. Only 'company_id' and 'project_id' are accepted; both are coerced to integers, and a non-numeric value is reported back as a message rather than stored. The change lives in memory for this server process only — it is never written to disk and is lost on restart. Setting the same value twice is a no-op, and nothing in Procore is modified: this only changes which ids this server fills in for you. Returns a confirmation plus the full updated configuration.
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | Which default to set. These are the only accepted keys; any other value is rejected. | |
| value | Yes | The id to store, as a string of digits (e.g. '12345'). Coerced to an integer; a non-numeric value is rejected. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Adds substantial context beyond annotations: in-memory lifetime with process-lifetime scoping, no disk writes, loss on restart, idempotency of repeated sets, integer coercion semantics, that non-numeric values are reported rather than stored, and explicit assurance that nothing in Procore itself is modified. This goes well beyond what readOnlyHint=false communicates and prevents the agent from misjudging the side-effect profile. No contradiction found.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The opening sentence front-loads the purpose, and while the description runs long (~170 words), each sentence provides distinct value covering usage, validation, persistence, idempotency, side effects, and return value. A capable editor could trim slightly, but there is no fat.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema present, the description appropriately discloses the return value ('confirmation plus the full updated configuration'). Between annotations and text, the agent understands validation, side effects, scope, and return behavior completely. There are no material gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with detailed per-parameter descriptions, establishing a baseline of 3. The description adds value by revealing coercion behavior, rejection semantics for invalid keys/values, and error-handling outcomes that the schema alone doesn't make explicit.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Uses a specific verb+resource pair ('Sets the default company_id or project_id') and clearly distinguishes this tool by explicitly naming the sibling it feeds into ('procore_api_call') and the sibling used to confirm changes ('procore_get_config'). The scope and effect are unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly tells the agent when to use it ('to switch project context mid-session instead of restarting the server') and points to procore_get_config as a follow-up to confirm state. This gives clear decision context against named alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
2934 tool updates
v2.0.0- Removed
accessible_tools - Removed
add_a_new_markup - Removed
add_additional_assignees_to_a_workflow_instance_company - Removed
add_additional_assignees_to_a_workflow_instance_project - Removed
add_alternative_response_set_to_project_checklist_template - Removed
add_an_existing_response_to_an_item_response_set - Removed
add_attachment_to_project_asset_type - Removed
add_attachments_to_punch_item - Removed
add_category_to_project - Removed
add_change_order_package_to_a_requisition_subcontractor_invoice - Removed
add_checklist_template_alternative_response_set - Removed
add_comments_to_a_direct_issue - Removed
add_company_checklist_template_alternative_response_set - Removed
add_company_user_to_project - Removed
add_person_to_a_group - Removed
add_project_to_group - Removed
add_role_to_project - Removed
add_segment_to_the_project_pattern - Removed
add_subcategory_to_category - Removed
add_tag_instance_to_person - Removed
add_tag_instance_to_project - Removed
add_to_project - Removed
add_up_to_100_comments_to_a_material - Removed
add_up_to_100_comments_to_a_purchase_order - Removed
add_up_to_100_comments_to_a_receipt - Removed
add_up_to_100_comments_to_a_shipment - Removed
add_up_to_100_comments_to_a_transfer - Removed
add_up_to_100_comments_to_an_adjustment - Removed
add_values_to_custom_field - Removed
add_wage_override - Removed
adds_a_line_item_to_an_inter_project_transfer - Removed
adds_a_single_attachment_to_a_receipt_resource - Removed
adds_a_single_line_item_to_a_draft_receipt - Removed
adds_a_single_line_item_to_an_existing_transfer_document - Removed
adds_attachment_s_to_a_direct_issue - Removed
adds_attachments_to_a_defect_resource - Removed
adds_attachments_to_a_material_requirements_resource - Removed
adds_attachments_to_a_material_resource - Removed
adds_attachments_to_a_purchase_order_resource - Removed
adds_attachments_to_a_receipt_resource - Removed
adds_attachments_to_a_shipment_resource - Removed
adds_attachments_to_a_transfer - Removed
adds_attachments_to_an_inter_project_transfer - Removed
adds_bulk_line_items_to_a_shipment_from_a_purchase_order - Removed
adds_comments_to_a_defect_resource - Removed
adds_comments_to_a_material_requirements_resource - Removed
adds_comments_to_an_inter_project_transfer - Removed
adds_existing_labels_to_specified_resources - Removed
adds_line_items_to_an_existing_direct_issue - Removed
adds_multiple_line_items_to_a_draft_receipt_in_bulk - Removed
adds_new_line_items_to_an_existing_adjustment_document - Removed
adds_one_or_more_attachments_to_an_adjustment_document - Removed
assign_the_attribute_items_to_the_wbs_codes - Removed
associate_equipment_with_project_company - Removed
associate_equipment_with_project_project - Removed
batch_get_model_manager_viewpoints_by_uuid_rest_v2_0_issue - Removed
batch_update_correspondence_type_items - Removed
batch_update_generic_tool_items - Removed
batch_update_rfis - Removed
bid_level_across_a_bid_form - Removed
bulk_activation - Removed
bulk_add_company_users_to_projects - Removed
bulk_create_action_plan_item_assignees - Removed
bulk_create_action_plan_references - Removed
bulk_create_action_plan_template_approvers - Removed
bulk_create_action_plan_template_item_assignees_company - Removed
bulk_create_action_plan_template_item_assignees_project - Removed
bulk_create_action_plan_template_receivers - Removed
bulk_create_action_plan_template_references - Removed
bulk_create_action_plan_template_test_record_requests_company - Removed
bulk_create_action_plan_template_test_record_requests_project - Removed
bulk_create_action_plan_test_record_requests - Removed
bulk_create_action_plans_for_assets - Removed
bulk_create_action_plans_for_locations - Removed
bulk_create_actual_production_quantities - Removed
bulk_create_bid_forms - Removed
bulk_create_checklist_inspections_item_attachments - Removed
bulk_create_company_webhooks_triggers - Removed
bulk_create_custom_field_lov_entries - Removed
bulk_create_document_revisions - Removed
bulk_create_document_uploads - Removed
bulk_create_equipment_timecard_entries - Removed
bulk_create_field_rules - Removed
bulk_create_field_rules_project_scope - Removed
bulk_create_groups_in_a_layer - Removed
bulk_create_materials - Removed
bulk_create_plan_template_references - Removed
bulk_create_project_memberships - Removed
bulk_create_project_timecard_entries - Removed
bulk_create_project_webhooks_triggers - Removed
bulk_create_time_and_material_equipment_logs - Removed
bulk_create_time_and_material_timecards - Removed
bulk_create_timecard_entries - Removed
bulk_create_triggers - Removed
bulk_create_update_ui_flags - Removed
bulk_create_wbs_codes - Removed
bulk_create_workflow_instances_company_public - Removed
bulk_create_workflow_instances_project_public - Removed
bulk_deactivation - Removed
bulk_delete_attachments_company - Removed
bulk_delete_attachments_project - Removed
bulk_delete_attachments_project_asset_types - Removed
bulk_delete_bim_model_revision_viewpoints - Removed
bulk_delete_company_segment_items - Removed
bulk_delete_company_webhooks_triggers - Removed
bulk_delete_managed_equipment - Removed
bulk_delete_managed_equipment_attachment - Removed
bulk_delete_managed_equipment_maintenance_log_attachments - Removed
bulk_delete_materials - Removed
bulk_delete_procore_item_associations - Removed
bulk_delete_project_segment_items - Removed
bulk_delete_project_tasks - Removed
bulk_delete_project_tasks_company - Removed
bulk_delete_project_webhooks_triggers - Removed
bulk_delete_specification_sections - Removed
bulk_delete_time_and_material_attachments - Removed
bulk_delete_time_and_material_equipment_logs - Removed
bulk_delete_time_and_material_timecards - Removed
bulk_delete_triggers - Removed
bulk_destroy_action_plan_template_approvers - Removed
bulk_destroy_action_plan_template_receivers - Removed
bulk_destroy_actual_production_quantities - Removed
bulk_edit_specification_sections - Removed
bulk_remove_company_users_from_projects - Removed
bulk_remove_current_project_project - Removed
bulk_remove_project_details_for_company_users_on_projects - Removed
bulk_remove_project_memberships - Removed
bulk_retrieve_managed_equipment - Removed
bulk_transition_defects_to_a_new_status - Removed
bulk_update_action_plan_item - Removed
bulk_update_action_plan_item_assignees - Removed
bulk_update_action_plan_template_item_assignees - Removed
bulk_update_action_plan_template_item_company - Removed
bulk_update_action_plan_template_item_project - Removed
bulk_update_actual_production_quantities - Removed
bulk_update_affliction_types - Removed
bulk_update_company_action_plan_template_item_assignees - Removed
bulk_update_company_observation_templates - Removed
bulk_update_contributing_behaviors - Removed
bulk_update_contributing_conditions - Removed
bulk_update_current_project_company - Removed
bulk_update_current_project_project - Removed
bulk_update_document_uploads - Removed
bulk_update_equipment_company - Removed
bulk_update_field_rules - Removed
bulk_update_field_rules_project_scope - Removed
bulk_update_for_specification_sets_for_a_project - Removed
bulk_update_harm_sources - Removed
bulk_update_hazards - Removed
bulk_update_incident_action_types - Removed
bulk_update_links - Removed
bulk_update_managed_equipment_models - Removed
bulk_update_managed_equipment_types - Removed
bulk_update_materials - Removed
bulk_update_project_details_for_company_users_on_projects - Removed
bulk_update_project_observation_templates - Removed
bulk_update_specification_section_revisions - Removed
bulk_update_status_of_equipment_company - Removed
bulk_update_status_of_equipment_project - Removed
bulk_update_subcontractor_invoice_requisitions_items - Removed
bulk_update_time_and_material_equipment_logs - Removed
bulk_update_time_and_material_timecards - Removed
bulk_update_timecard_entries - Removed
bulk_update_wbs_codes - Removed
bulk_update_work_activities - Removed
bulk_updates_destination_for_multiple_line_items - Removed
bulk_updates_for_daily_logs - Removed
bulk_updates_line_items_on_a_single_shipment - Removed
bulk_upsert_lov_codes_company - Removed
bulk_upsert_lov_codes_project - Removed
calculate_number_of_inspections_to_create_based_on_schedule - Removed
calculate_when_the_first_inspection_of_an_inspection_schedule - Removed
change_history - Removed
change_history_of_specification_section_revision - Removed
check_company_zone - Removed
check_csv_export_status_for_commitment_change_order_rows - Removed
check_csv_export_status_for_prime_change_order_rows - Removed
check_if_number_and_revision_entered_are_available_or_duplicated - Removed
check_pdf_generation_status_commitment_change_order_batches - Removed
check_pdf_generation_status_commitment_change_orders - Removed
check_pdf_generation_status_commitment_contracts - Removed
check_pdf_generation_status_prime_change_order_batches - Removed
check_pdf_generation_status_prime_change_orders - Removed
check_pdf_generation_status_prime_contracts - Removed
checklist_schedule_assignee_filter_options - Removed
checklist_schedule_equipment_filter_options - Removed
checklist_schedule_inspection_template_filter_options - Removed
checklist_schedule_inspection_type_filter_options - Removed
checklist_schedule_location_filter_options - Removed
clone_bid_board_project - Removed
clone_change_event - Removed
clones_daily_logs_from_one_date_to_another_date - Removed
close_and_distribute_a_submittal_log - Removed
close_checklist_inspection - Removed
company_folder_and_file_index - Removed
company_markup_indicators_by_items - Removed
complete_company_upload - Removed
complete_unified_upload - Removed
consolidates_inventory_of_a_material_from_multiple_locations - Removed
convert_private_layer_to_public - Removed
copy_from_standard_cost_code_list - Removed
copy_markups - Removed
copy_subset_from_standard_cost_code_list - Removed
create_a_batch_of_bim_levels - Removed
create_a_batch_of_bim_model_revision_plans - Removed
create_a_batch_of_bim_model_revision_viewpoints - Removed
create_a_batch_of_bim_plans - Removed
create_a_batch_of_bim_view_folder_by_path - Removed
create_a_batch_of_bim_viewpoints - Removed
create_a_bid_form - Removed
create_a_bim_viewpoint - Removed
create_a_budget_change - Removed
create_a_budget_lock - Removed
create_a_budget_view_snapshot - Removed
create_a_change_order_change_reason - Removed
create_a_checklist_inspection_schedule - Removed
create_a_company_action_plan_type - Removed
create_a_company_wbs_segment - Removed
create_a_compliance_document_purchase_order_contracts - Removed
create_a_compliance_document_work_order_contracts - Removed
create_a_coordination_issue_rest_v2_0 - Removed
create_a_copy_of_the_action_plan_item_in_the_items_section - Removed
create_a_copy_of_the_action_plan_section_in_the_action_plan - Removed
create_a_copy_of_the_action_plan_template_item_company - Removed
create_a_copy_of_the_action_plan_template_item_project - Removed
create_a_copy_of_the_action_plan_template_section_company - Removed
create_a_copy_of_the_action_plan_template_section_project - Removed
create_a_document_snapshot_on_a_coordination_issue_rest_v2_0 - Removed
create_a_job_title - Removed
create_a_line_item_group_in_the_proposal_company - Removed
create_a_line_item_group_in_the_proposal_project - Removed
create_a_manual_forecast_line_item - Removed
create_a_manual_hold_for_a_given_invoice - Removed
create_a_model_manager_viewpoint_and_link_it_to_the_issue_rest - Removed
create_a_new_budgeted_production_quantity - Removed
create_a_new_classification - Removed
create_a_new_company_level_context - Removed
create_a_new_context - Removed
create_a_new_crew - Removed
create_a_new_equipment - Removed
create_a_new_group - Removed
create_a_new_layer - Removed
create_a_new_maintenance_record_company - Removed
create_a_new_maintenance_record_project - Removed
create_a_new_time_and_material_entry - Removed
create_a_new_time_and_material_equipment_log - Removed
create_a_new_time_and_material_notification - Removed
create_a_note_in_the_project - Removed
create_a_note_in_the_project_company - Removed
create_a_person - Removed
create_a_piece_of_equipment - Removed
create_a_project - Removed
create_a_project_checklist_template_from_a_company_checklist - Removed
create_a_project_logo - Removed
create_a_proposal_in_the_project - Removed
create_a_proposal_in_the_project_company - Removed
create_a_resource_request_on_a_project - Removed
create_a_response - Removed
create_a_response_in_the_specified_item_response_set - Removed
create_a_single_group - Removed
create_a_specification_section - Removed
create_a_specification_section_division - Removed
create_a_task_item_comment - Removed
create_a_wbs_code - Removed
create_a_workflow_instance_company_public - Removed
create_a_workflow_instance_project_public - Removed
create_accident_log - Removed
create_action - Removed
create_action_plan - Removed
create_action_plan_approver_signature - Removed
create_action_plan_item - Removed
create_action_plan_item_assignee - Removed
create_action_plan_item_assignee_signature - Removed
create_action_plan_receiver_signature - Removed
create_action_plan_reference - Removed
create_action_plan_section - Removed
create_action_plan_template_approver - Removed
create_action_plan_template_receiver - Removed
create_action_plan_test_record - Removed
create_action_plan_test_record_request - Removed
create_action_plan_verification_methods - Removed
create_actual_production_quantity - Removed
create_advanced_export_for_existing_rfi - Removed
create_affliction_type - Removed
create_an_action_plan_from_a_plan_template - Removed
create_an_electronic_signature - Removed
create_an_equipment_make - Removed
create_an_equipment_model - Removed
create_an_equipment_type - Removed
create_an_estimate_line_item_in_the_proposal_company - Removed
create_an_estimate_line_item_in_the_proposal_project - Removed
create_an_project_equipment_log - Removed
create_and_update_bulk_coordination_issues - Removed
create_app_configuration - Removed
create_asset_company - Removed
create_asset_project - Removed
create_attachment - Removed
create_attachment_actions - Removed
create_attachment_lists - Removed
create_attachment_time_and_material_entry_attachments - Removed
create_attachment_witness_statements - Removed
create_attachments_company - Removed
create_attachments_project - Removed
create_bid - Removed
create_bid_board_project - Removed
create_bid_package - Removed
create_billing_period - Removed
create_bim_file - Removed
create_bim_geometry_file_bundle - Removed
create_bim_level - Removed
create_bim_mint_tokens - Removed
create_bim_model - Removed
create_bim_model_revision - Removed
create_bim_model_revision_plan - Removed
create_bim_plan - Removed
create_bim_view_folder - Removed
create_budget_line_item - Removed
create_budget_modification - Removed
create_calendar_item - Removed
create_call_log - Removed
create_catalog - Removed
create_change_event - Removed
create_change_event_comment - Removed
create_change_event_production_quantity - Removed
create_change_order_package - Removed
create_change_order_request - Removed
create_checklist - Removed
create_checklist_comment - Removed
create_checklist_inspection - Removed
create_checklist_item_attachment - Removed
create_checklist_item_response - Removed
create_checklist_schedule_attachment - Removed
create_checklist_section - Removed
create_checklist_signature - Removed
create_checklist_signature_request - Removed
create_classification - Removed
create_commitment_change_order - Removed
create_commitment_change_order_batch - Removed
create_commitment_change_order_line_item - Removed
create_commitment_contract - Removed
create_commitment_contract_line_item - Removed
create_communication_tag - Removed
create_company_action_plan_template_item - Removed
create_company_action_plan_template_item_assignee - Removed
create_company_action_plan_template_reference - Removed
create_company_action_plan_template_section - Removed
create_company_action_plan_template_test_record_request - Removed
create_company_action_plan_templates - Removed
create_company_checklist_template - Removed
create_company_checklist_template_section - Removed
create_company_classifications_for_project - Removed
create_company_currency_configuration - Removed
create_company_exchange_rates - Removed
create_company_file - Removed
create_company_file_version - Removed
create_company_folder - Removed
create_company_form_template - Removed
create_company_inspection_template_item - Removed
create_company_inspection_template_item_reference - Removed
create_company_insurance - Removed
create_company_level_email - Removed
create_company_level_email_communication - Removed
create_company_naming_standard_rule - Removed
create_company_office - Removed
create_company_person - Removed
create_company_segment_item - Removed
create_company_tag - Removed
create_company_user_v1_0 - Removed
create_company_user_v1_3 - Removed
create_company_vendor - Removed
create_company_vendor_business_register - Removed
create_company_vendor_insurance - Removed
create_company_webhooks_hook - Removed
create_company_webhooks_triggers - Removed
create_compliance_document - Removed
create_configurable_field_sets - Removed
create_contract_compliance_document - Removed
create_contract_payment - Removed
create_contributing_behavior - Removed
create_contributing_condition - Removed
create_coordination_issue - Removed
create_coordination_issue_assignment - Removed
create_cost_code - Removed
create_cost_item - Removed
create_csv_export_for_commitment_change_order_rows - Removed
create_csv_export_for_prime_change_order_rows - Removed
create_custom_field - Removed
create_custom_field_definitions - Removed
create_custom_field_metadata - Removed
create_daily_construction_report_log - Removed
create_delay_log - Removed
create_delivery_log - Removed
create_department - Removed
create_direct_cost_item - Removed
create_direct_cost_line_item - Removed
create_document_custom_tag - Removed
create_drawing - Removed
create_drawing_area - Removed
create_drawing_set - Removed
create_drawing_upload - Removed
create_dumpster_log - Removed
create_email - Removed
create_email_communication - Removed
create_environmental - Removed
create_equipment - Removed
create_equipment_attachment_company - Removed
create_equipment_attachment_project - Removed
create_equipment_category - Removed
create_equipment_category_company - Removed
create_equipment_category_project - Removed
create_equipment_company - Removed
create_equipment_log_company - Removed
create_equipment_log_project - Removed
create_equipment_maintenance_log - Removed
create_equipment_make_company - Removed
create_equipment_make_project - Removed
create_equipment_model_company - Removed
create_equipment_model_project - Removed
create_equipment_project - Removed
create_equipment_status_company - Removed
create_equipment_type_company - Removed
create_equipment_type_project - Removed
create_field_rule - Removed
create_field_rule_project_scope - Removed
create_form - Removed
create_generic_tool - Removed
create_generic_tool_item - Removed
create_generic_tool_item_response - Removed
create_generic_tool_status - Removed
create_gps_position - Removed
create_group_and_move_markups - Removed
create_harm_source - Removed
create_hazard - Removed
create_image - Removed
create_image_category - Removed
create_incident - Removed
create_incident_action_type - Removed
create_injury - Removed
create_inspection_log - Removed
create_inspection_type - Removed
create_installation_request - Removed
create_instruction_types - Removed
create_instructions - Removed
create_item_response_set - Removed
create_line_item_type - Removed
create_line_items_and_line_item_groups_in_bulk_company - Removed
create_line_items_and_line_item_groups_in_bulk_to_the_project - Removed
create_link - Removed
create_location - Removed
create_location_admin - Removed
create_lookahead - Removed
create_lookahead_task - Removed
create_maintenance_log_attachment - Removed
create_manpower_log - Removed
create_material - Removed
create_meeting - Removed
create_meeting_attendee_record - Removed
create_meeting_category - Removed
create_meeting_project - Removed
create_meeting_topic - Removed
create_meeting_topic_project - Removed
create_monitoring_resource - Removed
create_near_miss - Removed
create_new_delay_log_type - Removed
create_new_sub_cost_catalog - Removed
create_notes_log - Removed
create_observation_item - Removed
create_observation_item_response_log - Removed
create_or_find_bim_view_folder_by_path - Removed
create_or_update_incident_alert_recipient - Removed
create_payment_application_owner_invoice_for_prime_contract - Removed
create_pdf_export_for_a_commitment_change_order - Removed
create_pdf_export_for_a_commitment_change_order_batch - Removed
create_pdf_export_for_a_prime_change_order - Removed
create_pdf_export_for_a_prime_change_order_batch - Removed
create_pdf_export_for_a_prime_contract - Removed
create_pdf_export_for_commitment_contracts - Removed
create_pdf_template_config - Removed
create_permission_template - Removed
create_plan_revision_log - Removed
create_potential_change_order - Removed
create_potential_change_order_line_item - Removed
create_prime_change_order - Removed
create_prime_change_order_batch - Removed
create_prime_change_order_line_item - Removed
create_prime_contract - Removed
create_prime_contract_line_item - Removed
create_prime_contract_line_item_project - Removed
create_prime_contract_project - Removed
create_procore_item_association - Removed
create_productivity_log - Removed
create_program - Removed
create_project - Removed
create_project_action_plan_template_reference - Removed
create_project_bid_type - Removed
create_project_checklist_template - Removed
create_project_currency_configuration - Removed
create_project_distribution_group - Removed
create_project_equipment_maintenance_log - Removed
create_project_exchange_rates - Removed
create_project_file - Removed
create_project_file_version - Removed
create_project_folder - Removed
create_project_inspection_template_item_reference - Removed
create_project_insurance - Removed
create_project_membership - Removed
create_project_naming_standard_rule - Removed
create_project_observation_type - Removed
create_project_owner_type - Removed
create_project_person - Removed
create_project_region - Removed
create_project_role - Removed
create_project_segment_item - Removed
create_project_stage - Removed
create_project_task - Removed
create_project_task_company - Removed
create_project_type - Removed
create_project_upload - Removed
create_project_user - Removed
create_project_vendor - Removed
create_project_vendor_insurance - Removed
create_project_webhooks_hook - Removed
create_project_webhooks_triggers - Removed
create_property_damage - Removed
create_punch_item - Removed
create_punch_item_comment - Removed
create_punch_item_type - Removed
create_purchase_order_contract - Removed
create_purchase_order_contract_detail_line_item - Removed
create_purchase_order_contract_line_item - Removed
create_quantity_log - Removed
create_reinspections - Removed
create_requested_change - Removed
create_requisition_subcontractor_invoices_for_commitment - Removed
create_resource - Removed
create_resource_project - Removed
create_rfi - Removed
create_rfi_reply - Removed
create_rfq - Removed
create_rfq_quote - Removed
create_rfq_response - Removed
create_rounding_configuration - Removed
create_safety_violation_log - Removed
create_signature_for_time_and_material_entry - Removed
create_signature_for_timesheet_company - Removed
create_signature_for_timesheet_project - Removed
create_specification_area - Removed
create_specification_section_division_for_a_project - Removed
create_specification_section_for_a_project - Removed
create_specification_set - Removed
create_specification_upload - Removed
create_standard_cost_code - Removed
create_standard_cost_code_list - Removed
create_sub_job - Removed
create_submittal - Removed
create_submittal_response - Removed
create_submittals_from_specs - Removed
create_support_pin - Removed
create_task - Removed
create_task_item - Removed
create_tax_code - Removed
create_tax_type - Removed
create_time_and_material_timecard - Removed
create_time_off_for_a_person - Removed
create_timecard_entry - Removed
create_timecard_entry_company - Removed
create_timecard_entry_project - Removed
create_timecard_entry_project_2 - Removed
create_timeline_event - Removed
create_timesheet - Removed
create_timesheet_to_budget_configuration - Removed
create_todo - Removed
create_trade - Removed
create_unified_company_upload - Removed
create_unified_upload - Removed
create_unit_of_measure - Removed
create_unmanaged_equipment_project - Removed
create_viewpoint_and_procore_item_association - Removed
create_visitor_log - Removed
create_waste_log - Removed
create_wbs_attribute_item - Removed
create_wbs_attribute_items_in_bulk - Removed
create_wbs_attributes - Removed
create_weather_log_v1_0 - Removed
create_weather_log_v1_1 - Removed
create_webhooks_hook - Removed
create_webhooks_trigger - Removed
create_witness_statement - Removed
create_work_activity - Removed
create_work_log - Removed
create_work_order_contract - Removed
create_work_order_contract_detail_line_item - Removed
create_work_order_contract_line_item - Removed
create_workflow_activity_history - Removed
create_workflow_bulk_replace_request - Removed
creates_a_container_from_shipment_line_items - Removed
creates_a_inspection_item_signature_request - Removed
creates_a_inspection_item_signature_request_signature - Removed
creates_a_new_adjustment_document - Removed
creates_a_new_condition_for_a_specific_line_item_in_a_receipt - Removed
creates_a_new_direct_issue_document - Removed
creates_a_new_inter_project_transfer - Removed
creates_a_new_receipt - Removed
creates_a_new_shipment - Removed
creates_a_new_stand_alone_transfer - Removed
creates_an_inspection_item_comment - Removed
creates_new_labels_in_the_specified_company_and_project - Removed
creates_or_updates_a_budget_note_for_a_budget_or_a_forecasting - Removed
creates_or_updates_project_date - Removed
creates_requested_change - Removed
delete_a_budget_change - Removed
delete_a_budgeted_production_quantity - Removed
delete_a_change_order_change_reason - Removed
delete_a_classification - Removed
delete_a_company_action_plan_templates - Removed
delete_a_company_office - Removed
delete_a_compliance_document_purchase_order_contracts - Removed
delete_a_compliance_document_work_order_contracts - Removed
delete_a_coordination_issue_rest_v2_0 - Removed
delete_a_crew - Removed
delete_a_direct_cost_line_item - Removed
delete_a_document_snapshot_from_a_coordination_issue_rest_v2_0 - Removed
delete_a_drawing_area - Removed
delete_a_equipment_type - Removed
delete_a_job_title - Removed
delete_a_line_item_group_from_the_proposal_company - Removed
delete_a_line_item_group_from_the_proposal_project - Removed
delete_a_link - Removed
delete_a_lov_code_company - Removed
delete_a_lov_code_project - Removed
delete_a_maintenance_record_by_id - Removed
delete_a_maintenance_record_by_id_project - Removed
delete_a_manual_forecast_line_item - Removed
delete_a_note_from_the_project - Removed
delete_a_note_from_the_project_company - Removed
delete_a_payment_application_owner_invoice - Removed
delete_a_person - Removed
delete_a_prime_contract_line_item - Removed
delete_a_proposal_from_the_project - Removed
delete_a_proposal_from_the_project_company - Removed
delete_a_resource_planning_tag - Removed
delete_a_resource_request - Removed
delete_a_response - Removed
delete_a_signature - Removed
delete_a_single_group - Removed
delete_a_single_project - Removed
delete_a_task_item_comment - Removed
delete_a_time_and_material_attachment - Removed
delete_a_time_and_material_entry - Removed
delete_a_time_and_material_equipment_log - Removed
delete_a_time_and_material_notification - Removed
delete_a_time_off_record - Removed
delete_accident_log - Removed
delete_action_plan - Removed
delete_action_plan_approver_signature - Removed
delete_action_plan_item - Removed
delete_action_plan_item_assignee - Removed
delete_action_plan_item_assignee_signature - Removed
delete_action_plan_receiver_signature - Removed
delete_action_plan_reference - Removed
delete_action_plan_section - Removed
delete_action_plan_template_approver - Removed
delete_action_plan_template_receiver - Removed
delete_action_plan_test_record - Removed
delete_action_plan_test_record_request - Removed
delete_action_plan_verification_method - Removed
delete_actual_production_quantity - Removed
delete_affliction_type - Removed
delete_an_attachment_for_a_project_asset_type - Removed
delete_an_equipment - Removed
delete_an_equipment_make - Removed
delete_an_equipment_model - Removed
delete_an_estimate_line_item_from_the_proposal_company - Removed
delete_an_estimate_line_item_from_the_proposal_project - Removed
delete_an_inspection_item_attachment - Removed
delete_an_project_equipment_log - Removed
delete_an_rfi_response - Removed
delete_app_configuration - Removed
delete_asset_company - Removed
delete_asset_project - Removed
delete_attachment_company - Removed
delete_attachment_project - Removed
delete_bid_board_project - Removed
delete_bid_form - Removed
delete_bid_form_item - Removed
delete_bid_form_section - Removed
delete_billing_period - Removed
delete_bim_file - Removed
delete_bim_level - Removed
delete_bim_model - Removed
delete_bim_model_revision - Removed
delete_bim_model_revision_plan - Removed
delete_bim_model_revision_viewpoint - Removed
delete_bim_plan - Removed
delete_budget_line_item - Removed
delete_budget_lock - Removed
delete_budget_modification - Removed
delete_bulk_coordination_issues - Removed
delete_calendar_item - Removed
delete_call_log - Removed
delete_catalog - Removed
delete_category - Removed
delete_change_event - Removed
delete_change_event_comment - Removed
delete_change_event_production_quantity - Removed
delete_checklist - Removed
delete_checklist_inspection - Removed
delete_checklist_inspections_item_attachment - Removed
delete_checklist_item_response - Removed
delete_checklist_schedule - Removed
delete_checklist_schedule_attachment - Removed
delete_checklist_section - Removed
delete_checklist_signature - Removed
delete_checklist_signature_request - Removed
delete_classification - Removed
delete_commitment_change_order - Removed
delete_commitment_change_order_batch - Removed
delete_commitment_change_order_line_item - Removed
delete_commitment_contract - Removed
delete_commitment_contract_line_item - Removed
delete_company_action_plan_template_item_assignee - Removed
delete_company_action_plan_template_reference - Removed
delete_company_action_plan_template_test_record_request - Removed
delete_company_action_plan_type - Removed
delete_company_checklist_section - Removed
delete_company_checklist_template - Removed
delete_company_currency_configuration - Removed
delete_company_file - Removed
delete_company_folder - Removed
delete_company_form_template - Removed
delete_company_inspection_template_item - Removed
delete_company_inspection_template_item_reference - Removed
delete_company_insurance - Removed
delete_company_level_context_by_id - Removed
delete_company_logo - Removed
delete_company_naming_standard_rule - Removed
delete_company_role - Removed
delete_company_segment_item - Removed
delete_company_vendor_insurance - Removed
delete_company_webhooks_hook - Removed
delete_company_webhooks_trigger - Removed
delete_configurable_field_set - Removed
delete_context_by_id - Removed
delete_context_by_query_parameters - Removed
delete_contract_compliance_document - Removed
delete_contract_payment - Removed
delete_contributing_behavior - Removed
delete_contributing_condition - Removed
delete_coordination_issue - Removed
delete_coordination_issue_attachment - Removed
delete_coordination_issue_workflow_issue - Removed
delete_cost_item - Removed
delete_cost_items - Removed
delete_custom_field - Removed
delete_custom_field_definition - Removed
delete_daily_construction_report_log - Removed
delete_delay_log - Removed
delete_delivery_log - Removed
delete_department - Removed
delete_direct_cost_item - Removed
delete_document_custom_tag - Removed
delete_drawing_set - Removed
delete_drawing_upload - Removed
delete_dumpster_log - Removed
delete_equipment - Removed
delete_equipment_attachment_company - Removed
delete_equipment_attachment_project - Removed
delete_equipment_category - Removed
delete_equipment_category_company - Removed
delete_equipment_company - Removed
delete_equipment_log - Removed
delete_equipment_maintenance_log - Removed
delete_equipment_make_company - Removed
delete_equipment_model_company - Removed
delete_equipment_status_company - Removed
delete_equipment_timecard_entry_project - Removed
delete_equipment_type_company - Removed
delete_field_rule - Removed
delete_field_rule_project_scope - Removed
delete_form - Removed
delete_from_project - Removed
delete_generic_tool_item - Removed
delete_generic_tool_status - Removed
delete_group - Removed
delete_harm_source - Removed
delete_hazard - Removed
delete_image - Removed
delete_image_category - Removed
delete_incident - Removed
delete_incident_action_type - Removed
delete_incident_alert_recipient - Removed
delete_inspection_log - Removed
delete_inspection_type - Removed
delete_instruction - Removed
delete_instruction_type - Removed
delete_item_response_set - Removed
delete_layer - Removed
delete_link - Removed
delete_location - Removed
delete_lookahead - Removed
delete_lookahead_task - Removed
delete_managed_equipment_attachment - Removed
delete_managed_equipment_maintenance_log_attachment - Removed
delete_manpower_log - Removed
delete_markups - Removed
delete_material - Removed
delete_meeting - Removed
delete_meeting_attendee_record - Removed
delete_meeting_category - Removed
delete_meeting_project - Removed
delete_monitoring_resource - Removed
delete_multiple_signatures - Removed
delete_notes_log - Removed
delete_observation_item - Removed
delete_pdf_template_config - Removed
delete_plan_revision_log - Removed
delete_potential_change_order_line_item - Removed
delete_prime_change_order - Removed
delete_prime_change_order_batch - Removed
delete_prime_change_order_line_item - Removed
delete_prime_contract - Removed
delete_prime_contract_line_item - Removed
delete_prime_contract_project - Removed
delete_procore_item_association - Removed
delete_productivity_log - Removed
delete_program - Removed
delete_project_action_plan_template_reference - Removed
delete_project_bid_type - Removed
delete_project_checklist_template - Removed
delete_project_currency_configuration - Removed
delete_project_distribution_group - Removed
delete_project_equipment_maintenance_log - Removed
delete_project_file - Removed
delete_project_folder - Removed
delete_project_inspection_template_item_reference - Removed
delete_project_insurance - Removed
delete_project_location - Removed
delete_project_membership - Removed
delete_project_naming_standard_rule - Removed
delete_project_observation_type - Removed
delete_project_owner_type - Removed
delete_project_region - Removed
delete_project_role - Removed
delete_project_segment_item - Removed
delete_project_stage - Removed
delete_project_task - Removed
delete_project_task_company - Removed
delete_project_type - Removed
delete_project_vendor_insurance - Removed
delete_project_webhooks_hook - Removed
delete_project_webhooks_trigger - Removed
delete_punch_item - Removed
delete_punch_item_type - Removed
delete_purchase_order_contract - Removed
delete_purchase_order_contract_detail_line_item - Removed
delete_purchase_order_contract_line_item - Removed
delete_quantity_log - Removed
delete_requisition_compliance_document - Removed
delete_requisition_subcontractor_invoice - Removed
delete_resource - Removed
delete_resource_project - Removed
delete_rfq - Removed
delete_rounding_configuration - Removed
delete_safety_violation_log - Removed
delete_signature_time_and_material_entries - Removed
delete_signature_timesheets - Removed
delete_specification_area - Removed
delete_specification_area_transfer - Removed
delete_specification_upload - Removed
delete_stamp - Removed
delete_standard_cost_code - Removed
delete_sub_job - Removed
delete_subcategory - Removed
delete_submittal - Removed
delete_task - Removed
delete_tax_type - Removed
delete_the_project_logo - Removed
delete_time_and_material_timecard - Removed
delete_timecard_entries - Removed
delete_timecard_entry - Removed
delete_timecard_entry_company - Removed
delete_timecard_entry_project - Removed
delete_timeline_event - Removed
delete_timesheet - Removed
delete_timesheet_to_budget_configuration - Removed
delete_todo - Removed
delete_unit_of_measure - Removed
delete_viewpoint_and_procore_item_association - Removed
delete_visitor_log - Removed
delete_wage_override - Removed
delete_waste_log - Removed
delete_wbs_attribute_item - Removed
delete_wbs_attributes - Removed
delete_wbs_segment - Removed
delete_weather_log_v1_0 - Removed
delete_weather_log_v1_1 - Removed
delete_webhooks_hook - Removed
delete_webhooks_trigger - Removed
delete_work_activity - Removed
delete_work_log - Removed
delete_work_order_contract - Removed
delete_work_order_contract_detail_line_item - Removed
delete_work_order_contract_line_item - Removed
deletes_a_condition_from_a_receipt_line_item_and_adjusts_line - Removed
deletes_a_line_item_from_a_direct_issue_document - Removed
deletes_a_line_item_from_a_draft_shipment - Removed
deletes_a_line_item_from_a_draft_transfer - Removed
deletes_a_line_item_from_an_inter_project_transfer - Removed
deletes_a_material_requirement_line_item - Removed
deletes_a_purchase_order_and_optionally_its_resources - Removed
deletes_a_receipt_line_item - Removed
deletes_an_adjustment_line_item_from_an_adjustment_document - Removed
deletes_an_inspection_item_signature - Removed
deletes_an_inspection_item_signature_request - Removed
deletes_attachment_s_from_a_direct_issue - Removed
deletes_attachment_s_from_an_adjustment_resource - Removed
deletes_attachments_from_a_defect_resource - Removed
deletes_attachments_from_a_material_requirements_resource - Removed
deletes_attachments_from_a_material_resource - Removed
deletes_attachments_from_a_purchase_order_resource - Removed
deletes_attachments_from_a_receipt_resource - Removed
deletes_attachments_from_a_shipment_resource - Removed
deletes_attachments_from_a_transfer - Removed
deletes_attachments_from_an_inter_project_transfer - Removed
destroy_action - Removed
destroy_environmental - Removed
destroy_injury - Removed
destroy_near_miss - Removed
destroy_property_damage - Removed
destroy_specification_section_revision - Removed
destroy_task_item - Removed
destroy_witness_statement - Removed
disassociate_equipment_with_project_company - Removed
disassociate_equipment_with_project_project - Removed
document_markup_permissions - Removed
download_all_company_level_email_attachments - Removed
download_all_email_attachments - Removed
download_all_generic_tool_item_attachments - Removed
download_all_response_attachments - Removed
download_bulk_replace_request_errors_csv - Removed
download_coordination_issues - Removed
download_external_rfi_and_responses_attachments - Removed
download_external_rfi_pdf_export - Removed
download_log_of_specification_section_revision - Removed
download_rfis_list - Removed
download_schedule_file - Removed
download_single_pdf_of_specification_section_revisions - Removed
download_specification_section_revision - Removed
download_zip_of_specification_section_revisions - Removed
draft_create - Removed
duplicate_a_configurable_field_set_and_its_custom_fields - Removed
edit_a_timecard_entry - Removed
email_a_time_and_material_entry - Removed
enable_a_person_to_log_in - Removed
export_company_level_email_communication - Removed
export_company_time_index_to_csv - Removed
export_email_communication_to_pdf - Removed
export_forms_with_bids - Removed
fetch_active_support_pin - Removed
fetch_attachment_by_id_company - Removed
fetch_attachment_by_id_project - Removed
find_configurable_field_set_by_index - Removed
find_or_create_an_annotated_document - Removed
find_or_create_location_s_by_path - Removed
finds_or_creates_a_inspection_item_signature_request - Removed
generates_pdf_document - Removed
get_a_groups_projects - Removed
get_a_list_of_inspection_item_evidence_configurations - Removed
get_a_list_of_inspection_item_signature_requests - Removed
get_a_list_of_possible_assignees_for_an_rfi - Removed
get_a_list_of_possible_rfi_managers_for_an_rfi - Removed
get_a_list_of_possible_timesheet_creator_ids - Removed
get_a_list_of_possible_timesheet_creators - Removed
get_a_single_group - Removed
get_a_single_job_title - Removed
get_a_single_person - Removed
get_a_single_project - Removed
get_a_single_resource_planning_tag - Removed
get_a_workflow_instance_company - Removed
get_a_workflow_instance_project - Removed
get_a_workflow_template_version - Removed
get_accessible_groups_for_authenticated_user_by_context - Removed
get_accessible_layers_for_authenticated_user_by_context - Removed
get_active_reinspection - Removed
get_activity_by_id - Removed
get_activity_link_by_id - Removed
get_adjustment_and_adjustment_line_items_of_a_project - Removed
get_advanced_forecasting_rows_of_a_project - Removed
get_affected_body_part_filter_options - Removed
get_affected_body_parts - Removed
get_affected_company_filter_options_environmentals - Removed
get_affected_company_filter_options_injuries - Removed
get_affected_company_filter_options_near_misses - Removed
get_affected_company_filter_options_property_damages - Removed
get_affected_parties_filter_options_injuries - Removed
get_affected_parties_filter_options_near_misses - Removed
get_affected_persons_filter_options_injuries - Removed
get_affected_persons_filter_options_near_misses - Removed
get_affliction_type_filter_options - Removed
get_all_attachments_for_equipment_company - Removed
get_all_attachments_for_equipment_project - Removed
get_all_bid_board_projects - Removed
get_all_company_groups - Removed
get_all_configurable_columns_for_adjustments - Removed
get_all_configurable_columns_for_defects - Removed
get_all_configurable_columns_for_materials - Removed
get_all_configurable_columns_material_requirements - Removed
get_all_configurable_columns_purchase_orders - Removed
get_all_configurable_columns_shipments - Removed
get_all_configurable_columns_transfers - Removed
get_all_custom_fields - Removed
get_all_defect_line_items - Removed
get_all_defects - Removed
get_all_equipment_categories_company - Removed
get_all_equipment_categories_project - Removed
get_all_equipment_company - Removed
get_all_equipment_ids_company - Removed
get_all_equipment_maintenance_records_company - Removed
get_all_equipment_maintenance_records_project - Removed
get_all_equipment_makes_company - Removed
get_all_equipment_makes_project - Removed
get_all_equipment_models_company - Removed
get_all_equipment_models_project - Removed
get_all_equipment_statuses_company - Removed
get_all_equipment_statuses_project - Removed
get_all_equipment_types_company - Removed
get_all_equipment_types_project - Removed
get_all_estimating_projects - Removed
get_all_job_titles_belonging_to_a_group - Removed
get_all_job_titles_in_the_company - Removed
get_all_line_items_for_a_specific_purchase_order - Removed
get_all_line_items_for_a_specific_shipment - Removed
get_all_materials - Removed
get_all_people_belonging_to_a_company - Removed
get_all_people_belonging_to_a_group - Removed
get_all_properties_for_a_resource_company - Removed
get_all_properties_for_a_resource_inter_project_transfers - Removed
get_all_properties_for_a_resource_project_adjustments - Removed
get_all_properties_for_a_resource_project_defects - Removed
get_all_properties_for_a_resource_project_issuing - Removed
get_all_properties_for_a_resource_project_material_requirements - Removed
get_all_properties_for_a_resource_project_materials - Removed
get_all_properties_for_a_resource_project_purchase_orders - Removed
get_all_properties_for_a_resource_project_receipts - Removed
get_all_properties_for_a_resource_project_shipments - Removed
get_all_properties_for_a_resource_project_transfers - Removed
get_all_properties_for_adjustments - Removed
get_all_properties_for_defects - Removed
get_all_properties_for_issuing - Removed
get_all_properties_for_materials - Removed
get_all_properties_material_requirements - Removed
get_all_properties_purchase_orders - Removed
get_all_properties_shipments - Removed
get_all_properties_transfers - Removed
get_all_purchase_order_line_items - Removed
get_all_purchase_orders - Removed
get_all_resource_planning_tag_for_a_company - Removed
get_all_resource_planning_tag_for_a_group - Removed
get_all_resource_requests_for_a_single_project - Removed
get_all_resource_requests_for_projects_in_a_single_group - Removed
get_all_resource_requests_in_a_company - Removed
get_all_shipment_line_items - Removed
get_all_shipments - Removed
get_all_time_off_for_a_single_person - Removed
get_asset_naming_fields_company - Removed
get_asset_naming_fields_project - Removed
get_assignee_filter_options - Removed
get_attachment_for_project_asset_type - Removed
get_bid_board_project_by_id - Removed
get_bid_board_project_custom_fields - Removed
get_budget_note - Removed
get_budget_view_options - Removed
get_bulk_company_workflowable_object_instance_histories - Removed
get_bulk_project_workflowable_object_instance_histories - Removed
get_bulk_users_async_job_status - Removed
get_calendar_by_id_v2_1 - Removed
get_catalogs - Removed
get_change_event_settings - Removed
get_change_history_for_a_direct_issuing - Removed
get_change_history_for_a_material - Removed
get_change_history_for_a_purchase_order - Removed
get_change_history_for_a_shipment - Removed
get_change_history_for_a_transfer - Removed
get_change_history_for_an_adjustment - Removed
get_client_configuration_for_specification_sections - Removed
get_company_assignments - Removed
get_company_currency_configuration - Removed
get_company_exchange_rates - Removed
get_company_level_context_by_id - Removed
get_company_level_contexts - Removed
get_company_level_groups - Removed
get_company_level_layer_structure - Removed
get_company_level_layers - Removed
get_company_naming_standard_rules - Removed
get_company_part_upload_url - Removed
get_company_snapshots_summary - Removed
get_company_upload_status - Removed
get_company_workflowable_object_instance_histories - Removed
get_complete_layer_structure - Removed
get_configurable_field_sets_company - Removed
get_configuration_for_uom_master_list - Removed
get_context_by_id - Removed
get_contexts - Removed
get_contract_compliance_document - Removed
get_contracts_invoice_configuration - Removed
get_contributing_behavior_filter_options - Removed
get_contributing_condition_filter_options - Removed
get_cost_item - Removed
get_cost_items - Removed
get_current_company_assignments - Removed
get_custom_field_data_types - Removed
get_daily_log_headers_for_the_project - Removed
get_defect_by_id - Removed
get_defect_header_by_id - Removed
get_defect_line_items_by_defect_id - Removed
get_details_of_a_single_attachment_for_a_defect_resource - Removed
get_details_of_an_attachment_for_a_direct_issue - Removed
get_details_of_an_attachment_for_a_material - Removed
get_details_of_an_attachment_for_a_purchase_order - Removed
get_details_of_an_attachment_for_a_shipment - Removed
get_details_of_an_attachment_for_a_transfer - Removed
get_details_of_an_attachment_for_an_adjustment - Removed
get_details_of_an_attachment_for_an_inter_project_transfer - Removed
get_details_of_attachments_for_a_direct_issue - Removed
get_details_of_attachments_for_a_material - Removed
get_details_of_attachments_for_a_purchase_order - Removed
get_details_of_attachments_for_a_shipment - Removed
get_details_of_attachments_for_a_transfer - Removed
get_details_of_attachments_for_an_adjustment - Removed
get_details_of_attachments_for_an_inter_project_transfer - Removed
get_details_of_issuing_records_summary - Removed
get_details_of_one_or_more_attachments_for_a_defect_resource - Removed
get_divisions_and_sets_options_for_specification_sections - Removed
get_environmental_type_filter_options - Removed
get_equipment_by_id_company - Removed
get_equipment_by_id_project - Removed
get_equipment_by_project_project - Removed
get_equipment_change_history_company - Removed
get_equipment_ids_by_project_project - Removed
get_equipment_maintenance_record_by_its_id_company - Removed
get_equipment_maintenance_record_by_its_id_project - Removed
get_equipment_projects_company - Removed
get_estimating_project_data_by_procore_project_id - Removed
get_estimating_settings - Removed
get_export_options_for_existing_rfi - Removed
get_file_by_its_uuid - Removed
get_filing_type_filter_options - Removed
get_filing_types - Removed
get_group_assignments - Removed
get_group_by_id - Removed
get_groups - Removed
get_groups_for_layer - Removed
get_harm_source_filter_options_injuries - Removed
get_harm_source_filter_options_near_misses - Removed
get_hazard_filter_options - Removed
get_import_logs - Removed
get_import_status - Removed
get_incident_statuses - Removed
get_information_of_a_budget_change - Removed
get_issuing_line_items - Removed
get_layer_by_id - Removed
get_layers - Removed
get_layers_for_context - Removed
get_line_items_for_a_transfer - Removed
get_list_of_deleted_specification_sections_for_a_project - Removed
get_list_of_deleted_specification_sections_specification_areas - Removed
get_location_filter_options - Removed
get_look_ahead_data - Removed
get_managed_equipment_filter_options_environmentals - Removed
get_managed_equipment_filter_options_injuries - Removed
get_managed_equipment_filter_options_near_misses - Removed
get_managed_equipment_filter_options_property_damages - Removed
get_markup_stamp - Removed
get_markups_by_groups - Removed
get_material_details_by_id - Removed
get_meeting_change_history - Removed
get_my_open_items_statistics - Removed
get_next_available_number - Removed
get_next_available_number_by_spec_section - Removed
get_observation_item_pdf_url - Removed
get_one_coordination_issue_viewpoint_model_manager_or_legacy - Removed
get_open_items_statistics - Removed
get_operation_details - Removed
get_or_create_company_level_context_with_hierarchy - Removed
get_or_create_context_with_hierarchy - Removed
get_or_create_document_info - Removed
get_paginated_receipt_details - Removed
get_paginated_receipt_line_items - Removed
get_paginated_receipt_line_items_for_a_receipt_with_specified_id - Removed
get_permission_level_options - Removed
get_permissions_and_feature_flags_for_specification_sections - Removed
get_person_assignments - Removed
get_persons_assignment_history_data - Removed
get_procore_default_fieldsets_configuration_company - Removed
get_procore_default_fieldsets_configuration_project - Removed
get_project_assignments - Removed
get_project_budget_view_options - Removed
get_project_currency_configuration - Removed
get_project_exchange_rates - Removed
get_project_incidents_configuration - Removed
get_project_naming_standard_rules - Removed
get_project_task_by_id - Removed
get_project_task_by_id_company - Removed
get_project_tasks - Removed
get_project_tasks_company - Removed
get_project_workflowable_object_instance_histories - Removed
get_projects_assignment_history_data - Removed
get_purchase_order_header_details - Removed
get_receipt_change_history - Removed
get_receipt_header_details_by_id - Removed
get_receipt_properties - Removed
get_requisition_compliance_document - Removed
get_resource_planning_notification_profiles - Removed
get_responsible_company_filter_options - Removed
get_revisions - Removed
get_schedule_by_id - Removed
get_schedule_import_processing_state - Removed
get_schedule_metadata - Removed
get_shipment_header_details - Removed
get_single_custom_field - Removed
get_single_time_off_record - Removed
get_stamps - Removed
get_status_filter_options - Removed
get_tags_requiring_action_report - Removed
get_the_daily_log_header_via_date_or_id - Removed
get_the_minutes_and_date_created_for_all_parent_topics - Removed
get_the_minutes_and_date_created_for_all_parent_topics_project - Removed
get_the_specifications_user_permissions - Removed
get_timeline_event_by_id - Removed
get_total_workers_and_man_hours - Removed
get_unified_company_upload_url - Removed
get_unified_part_upload_url - Removed
get_unified_upload_status - Removed
get_unified_upload_url - Removed
get_units_of_measure - Removed
get_unmanaged_equipment_project - Removed
get_unreviewed_uploads_for_specification_areas - Removed
get_unreviewed_uploads_for_specification_sections_for_a_project - Removed
get_vendors_for_a_company - Removed
get_work_activity_filter_options_environmentals - Removed
get_work_activity_filter_options_injuries - Removed
get_work_activity_filter_options_near_misses - Removed
get_work_activity_filter_options_property_damages - Removed
get_workflow_data - Removed
get_workflow_instance_history_company - Removed
get_workflow_instance_history_project - Removed
get_workflow_preset_company - Removed
get_workflow_preset_project - Removed
gets_a_direct_issue_record_by_id - Removed
gets_a_paginated_list_of_adjustment_documents - Removed
gets_a_paginated_list_of_adjustment_line_items - Removed
gets_a_paginated_list_of_inter_project_transfer_line_items - Removed
gets_a_paginated_list_of_inter_project_transfer_summaries - Removed
gets_a_paginated_list_of_transfer_line_items_across_all - Removed
gets_a_paginated_list_of_transfers_for_the_project - Removed
gets_all_available_resource_types_in_the_system - Removed
gets_all_line_items_for_a_direct_issue_record - Removed
gets_all_material_requirements_line_items - Removed
gets_associated_documents_for_a_purchase_order - Removed
gets_change_history_for_a_defect - Removed
gets_change_history_for_a_material_requirement - Removed
gets_configurable_columns_for_inter_project_transfers - Removed
gets_configurable_columns_for_the_issuing_resource - Removed
gets_configurable_columns_for_the_receipt_view - Removed
gets_details_of_a_single_attachment_for_a_material_requirements - Removed
gets_details_of_a_single_attachment_for_a_receipt_resource - Removed
gets_details_of_a_specific_material_requirements_header - Removed
gets_details_of_attachments_for_a_material_requirements_resource - Removed
gets_details_of_attachments_for_a_receipt_resource - Removed
gets_documents_attached_to_bid_package - Removed
gets_line_items_for_a_specific_adjustment_document - Removed
gets_line_items_for_a_specific_inter_project_transfer - Removed
gets_line_items_for_a_specific_material_requirements_document - Removed
gets_material_requirements_based_on_the_specified_view_type - Removed
gets_materials_with_name_and_unit_of_measure - Removed
gets_properties_for_inter_project_transfers - Removed
gets_related_documents_for_a_defect - Removed
gets_related_documents_for_a_material - Removed
gets_related_documents_for_a_material_requirement - Removed
gets_related_documents_for_a_purchase_order - Removed
gets_related_documents_for_a_receipt - Removed
gets_related_documents_for_a_shipment - Removed
gets_related_documents_for_receipts_by_dashboard_type - Removed
gets_related_documents_for_shipments_by_dashboard_type - Removed
gets_the_change_history_for_a_specific_inter_project_transfer - Removed
gets_the_header_details_for_a_specific_adjustment_document - Removed
gets_the_header_details_for_a_specific_inter_project_transfer - Removed
gets_transfer_details_by_id_based_on_the_specified_view_type - Removed
header_info_for_specification_section_revision - Removed
index_bid_forms - Removed
initiate_schedule_import - Removed
item_scoped_document_markup_permissions - Removed
link_sub_assets_to_a_parent_asset_company - Removed
link_sub_assets_to_a_parent_asset_project - Removed
list_accepted_weather_conditions_daily_logs - Removed
list_accepted_weather_conditions_weather_logs - Removed
list_accident_logs - Removed
list_action_plan_approvers - Removed
list_action_plan_item_assignees - Removed
list_action_plan_items - Removed
list_action_plan_parties - Removed
list_action_plan_receivers - Removed
list_action_plan_references - Removed
list_action_plan_sections - Removed
list_action_plan_template_approvers - Removed
list_action_plan_template_item_assignees - Removed
list_action_plan_template_receivers - Removed
list_action_plan_test_record_requests - Removed
list_action_plan_test_records - Removed
list_action_plan_verification_methods - Removed
list_action_plans - Removed
list_actions - Removed
list_activities - Removed
list_activity_links - Removed
list_affliction_types - Removed
list_all_actual_production_quantities - Removed
list_all_attachments_company - Removed
list_all_attachments_project_v1_0 - Removed
list_all_attachments_project_v2_0 - Removed
list_all_available_permission_templates_for_a_project - Removed
list_all_classification - Removed
list_all_classifications - Removed
list_all_company_managed_equipment_user_permissions - Removed
list_all_connection_statuses_for_external_rfis_filter_options - Removed
list_all_direct_cost_line_items - Removed
list_all_equipment_categories - Removed
list_all_equipment_company - Removed
list_all_equipment_logs - Removed
list_all_equipment_makes - Removed
list_all_equipment_models - Removed
list_all_equipment_project - Removed
list_all_equipment_types - Removed
list_all_maintenance_logs_attachment - Removed
list_all_prime_contracts - Removed
list_all_project_budgeted_production_quantities - Removed
list_all_project_budgeted_production_quantity_ids - Removed
list_all_project_crew_ids - Removed
list_all_project_crews - Removed
list_all_project_equipment_ids - Removed
list_all_submittal_attachments_with_download_urls - Removed
list_all_time_and_material_entry - Removed
list_all_time_and_material_entry_configurable_field_sets - Removed
list_all_time_and_material_entry_matching_the_search_keyword - Removed
list_all_timesheets - Removed
list_alternative_response_sets - Removed
list_app_configurations - Removed
list_app_installations_app_installations - Removed
list_app_installations_installation_requests - Removed
list_asset_statuses_company - Removed
list_asset_statuses_project - Removed
list_asset_system_states - Removed
list_asset_types_company - Removed
list_asset_types_project - Removed
list_assets_company - Removed
list_assets_project - Removed
list_assignable_users - Removed
list_assignee_company_filter_options - Removed
list_assignee_filter_options - Removed
list_assignees_for_accessible_tasks - Removed
list_attachments_company - Removed
list_attachments_for_project_asset_type - Removed
list_attachments_project - Removed
list_available_checklist_item_types - Removed
list_available_external_rfi_filter_options - Removed
list_available_fields_for_rule_configuration - Removed
list_available_fields_for_rule_configuration_project_scope - Removed
list_available_filters_for_coordination_issues - Removed
list_available_observation_item_statuses_with_localized_labels - Removed
list_available_rfi_assigned_id_filter_options - Removed
list_available_rfi_ball_in_court_filter_options - Removed
list_available_rfi_cost_code_options - Removed
list_available_rfi_filters - Removed
list_available_rfi_prefix_stage_filter_options - Removed
list_available_rfi_priority_filter_options - Removed
list_available_rfi_received_from_filter_options - Removed
list_available_rfi_responsible_contractor_filter_options - Removed
list_available_rfi_rfi_manager_filter_options - Removed
list_available_rfi_status_filter_options - Removed
list_available_rfi_sub_job_filter_options - Removed
list_available_rfis_locations - Removed
list_available_status_transitions - Removed
list_available_statuses_for_external_rfis_filter_options - Removed
list_available_submittal_filters - Removed
list_bid_contacts - Removed
list_bid_packages_company - Removed
list_bid_packages_project - Removed
list_bid_uploads - Removed
list_bids_within_a_bid_package - Removed
list_bids_within_a_company - Removed
list_bids_within_a_project_v1_0 - Removed
list_bids_within_a_project_v2_0 - Removed
list_billing_periods - Removed
list_bim_file_extractions - Removed
list_bim_files - Removed
list_bim_levels - Removed
list_bim_model_change_history - Removed
list_bim_model_revision_objects - Removed
list_bim_model_revision_plans - Removed
list_bim_model_revision_properties - Removed
list_bim_model_revision_viewpoints - Removed
list_bim_model_revisions - Removed
list_bim_models - Removed
list_bim_plans - Removed
list_bim_property_file_objects - Removed
list_bim_property_file_properties - Removed
list_bim_view_folders - Removed
list_body_parts - Removed
list_budget_change_summaries - Removed
list_budget_detail_columns - Removed
list_budget_detail_filter_options - Removed
list_budget_details - Removed
list_budget_modifications - Removed
list_budget_view_detail_rows - Removed
list_budget_view_snapshot_detail_rows - Removed
list_budget_view_snapshot_summary_rows - Removed
list_budget_view_snapshots - Removed
list_budget_view_summary_rows - Removed
list_budget_views - Removed
list_calendar_events - Removed
list_calendar_items - Removed
list_calendars_v2_1 - Removed
list_call_logs - Removed
list_change_event_comments - Removed
list_change_event_production_quantities - Removed
list_change_event_statuses - Removed
list_change_event_statuses_company - Removed
list_change_event_types - Removed
list_change_events - Removed
list_change_history_company - Removed
list_change_history_for_a_generic_tool_item - Removed
list_change_history_for_timesheet - Removed
list_change_history_project - Removed
list_change_order_change_reasons - Removed
list_change_order_change_reasons_company - Removed
list_change_order_packages - Removed
list_change_order_requests - Removed
list_change_order_statuses - Removed
list_change_type_filter_options_company - Removed
list_change_type_filter_options_project - Removed
list_change_types - Removed
list_checklist_inspection_comments - Removed
list_checklist_inspection_schedules - Removed
list_checklist_inspection_sections - Removed
list_checklist_inspections_item_attachments - Removed
list_checklist_inspections_items - Removed
list_checklist_item_observations - Removed
list_checklist_list_assigned_company_filter_options - Removed
list_checklist_list_closed_by_contact_filter_options_v1_0 - Removed
list_checklist_list_closed_by_contact_filter_options_v2_0 - Removed
list_checklist_list_created_by_contact_filter_options - Removed
list_checklist_list_equipment_filter_options - Removed
list_checklist_list_inspection_type_filter_options - Removed
list_checklist_list_inspector_filter_options_v1_0 - Removed
list_checklist_list_inspector_filter_options_v2_0 - Removed
list_checklist_list_location_filter_options_v1_0 - Removed
list_checklist_list_location_filter_options_v2_0 - Removed
list_checklist_list_point_of_contact_filter_options_v1_0 - Removed
list_checklist_list_point_of_contact_filter_options_v2_0 - Removed
list_checklist_list_responsible_contractor_filter_options_v1_0 - Removed
list_checklist_list_responsible_contractor_filter_options_v2_0 - Removed
list_checklist_list_specification_section_filter_options_v1_0 - Removed
list_checklist_list_specification_section_filter_options_v2_0 - Removed
list_checklist_list_status_filter_options - Removed
list_checklist_list_template_filter_options_v1_0 - Removed
list_checklist_list_template_filter_options_v2_0 - Removed
list_checklist_list_trade_filter_options_v1_0 - Removed
list_checklist_list_trade_filter_options_v2_0 - Removed
list_checklist_list_type_filter_options - Removed
list_checklist_schedule_assignee_filter_options - Removed
list_checklist_schedule_attachments - Removed
list_checklist_schedule_change_histories - Removed
list_checklist_schedule_inspection_template_filter_options - Removed
list_checklist_schedule_inspection_type_filter_options - Removed
list_checklist_signature_requests - Removed
list_checklist_templates - Removed
list_checklists - Removed
list_checklists_inspections - Removed
list_commitment_change_order_line_items - Removed
list_commitment_contract_attachments - Removed
list_commitment_contract_line_items - Removed
list_commitment_contracts - Removed
list_commitments - Removed
list_communication_tags - Removed
list_communication_threads - Removed
list_companies - Removed
list_company_action_plan_template_item_assignees - Removed
list_company_action_plan_template_items - Removed
list_company_action_plan_template_references - Removed
list_company_action_plan_template_requests - Removed
list_company_action_plan_types - Removed
list_company_checklist_sections - Removed
list_company_checklist_template_sections - Removed
list_company_checklist_templates - Removed
list_company_form_templates - Removed
list_company_form_templates_from_project - Removed
list_company_inactive_users - Removed
list_company_inactive_vendors - Removed
list_company_inspection_template_item_reference - Removed
list_company_inspection_template_items - Removed
list_company_insurances - Removed
list_company_observation_types - Removed
list_company_offices - Removed
list_company_people - Removed
list_company_project_status_snapshots - Removed
list_company_projects - Removed
list_company_roles - Removed
list_company_root_folder_children - Removed
list_company_segment_items - Removed
list_company_users - Removed
list_company_users_2 - Removed
list_company_vendor_comments - Removed
list_company_vendor_insurances - Removed
list_company_vendors - Removed
list_company_wbs_patterns - Removed
list_company_wbs_segment_item_lists - Removed
list_company_wbs_segments - Removed
list_company_webhooks_deliveries - Removed
list_company_webhooks_hooks - Removed
list_company_webhooks_resources - Removed
list_company_webhooks_triggers - Removed
list_companys_projects - Removed
list_configurable_field_set_project_options - Removed
list_configurable_field_set_sections - Removed
list_configurable_field_sets - Removed
list_contract_compliance_documents - Removed
list_contract_payments - Removed
list_contributing_behaviors - Removed
list_contributing_conditions - Removed
list_coordination_issue_activities - Removed
list_coordination_issue_activity_feed_items - Removed
list_coordination_issue_assignable_users - Removed
list_coordination_issue_change_history - Removed
list_coordination_issue_file_filter_options - Removed
list_coordination_issue_viewpoints_legacy_model_manager_rest_v2 - Removed
list_coordination_issues - Removed
list_coordination_issues_for_a_project_rest_v2_0 - Removed
list_coordination_issues_in_recycle_bin - Removed
list_coordination_issues_in_recycle_bin_post - Removed
list_coordination_issues_post - Removed
list_coordination_issues_workflow_issues - Removed
list_correspondence_type_defaults - Removed
list_correspondence_type_items - Removed
list_correspondence_type_permissions - Removed
list_correspondence_type_users - Removed
list_correspondences_company - Removed
list_correspondences_project - Removed
list_cost_codes - Removed
list_cost_codes_for_timesheets - Removed
list_cost_codes_ids_for_timesheets - Removed
list_counts_of_daily_logs_v1_0 - Removed
list_counts_of_daily_logs_v1_1 - Removed
list_created_by_company_filter_options - Removed
list_creation_source_filter_options - Removed
list_creator_filter_options - Removed
list_current_revision_for_external_rfis_filter_options - Removed
list_custom_field_definitions - Removed
list_custom_field_definitions_company - Removed
list_custom_field_definitions_configurable_field_sets - Removed
list_custom_field_lov_entries - Removed
list_custom_field_lov_entries_company - Removed
list_custom_field_metadata - Removed
list_custom_field_metadata_company - Removed
list_custom_field_sections - Removed
list_custom_fields_user_options - Removed
list_custom_tool_users - Removed
list_daily_construction_report_logs - Removed
list_daily_construction_report_logs_vendor_options - Removed
list_default_correspondence_types - Removed
list_default_distribution_members - Removed
list_default_field_values_company - Removed
list_default_field_values_project - Removed
list_default_task_items_project_distribution_members - Removed
list_delay_log_types - Removed
list_delay_logs - Removed
list_deleted_punch_items - Removed
list_delivery_logs - Removed
list_delivery_methods - Removed
list_departments - Removed
list_direct_cost_items - Removed
list_direct_cost_line_items - Removed
list_distinct_material_ids_for_a_direct_issue_pick_document - Removed
list_distribution_groups - Removed
list_distribution_groups_for_specifications - Removed
list_document_snapshots_for_a_coordination_issue_rest_v2_0 - Removed
list_document_uploads_v2 - Removed
list_drawing_areas - Removed
list_drawing_disciplines - Removed
list_drawing_revision_terms - Removed
list_drawing_revisions - Removed
list_drawing_sets - Removed
list_drawing_tiles - Removed
list_drawing_uploads - Removed
list_drawings - Removed
list_dumpster_logs - Removed
list_ecrion_xml_and_template_for_meetings - Removed
list_ecrion_xml_and_template_for_meetings_project - Removed
list_environmental_types - Removed
list_environmentals - Removed
list_equipment - Removed
list_equipment_logs - Removed
list_equipment_maintenance_logs - Removed
list_equipment_timecard_entries_project - Removed
list_existing_received_from_login_information_for_external_rfis - Removed
list_existing_responsible_contractors_for_external_rfis_filter - Removed
list_existing_rfi_managers_for_external_rfis_filter_options - Removed
list_existing_sync_statuses_for_external_rfis_filter_options - Removed
list_external_rfi_revisions - Removed
list_external_rfis - Removed
list_field_production_report_summary - Removed
list_field_rules_for_an_asset_type - Removed
list_field_rules_for_an_asset_type_project_scope - Removed
list_filter_options_for_approvers - Removed
list_filter_options_for_attachments - Removed
list_filter_options_for_ball_in_court - Removed
list_filter_options_for_ball_in_court_company - Removed
list_filter_options_for_buffer_time - Removed
list_filter_options_for_cost_code - Removed
list_filter_options_for_created_by - Removed
list_filter_options_for_created_via - Removed
list_filter_options_for_current_revision - Removed
list_filter_options_for_design_team_review_time - Removed
list_filter_options_for_for_record_only - Removed
list_filter_options_for_internal_review_time - Removed
list_filter_options_for_is_rejected - Removed
list_filter_options_for_lead_time - Removed
list_filter_options_for_location - Removed
list_filter_options_for_prepare_time - Removed
list_filter_options_for_private - Removed
list_filter_options_for_received_from - Removed
list_filter_options_for_responsible_contractor - Removed
list_filter_options_for_specification_area - Removed
list_filter_options_for_specification_division - Removed
list_filter_options_for_specification_section - Removed
list_filter_options_for_submittal_manager - Removed
list_filter_options_for_submittal_package - Removed
list_filter_options_for_submittal_response - Removed
list_filter_options_for_submittal_revision - Removed
list_filter_options_for_submittal_scheduled_task - Removed
list_filter_options_for_submittal_status - Removed
list_filter_options_for_submittal_sub_job - Removed
list_filter_options_for_submittal_unpackaged - Removed
list_filter_options_for_submittal_workflow_template - Removed
list_filter_options_for_type - Removed
list_filters_company - Removed
list_filters_project - Removed
list_forms_on_a_project - Removed
list_generic_tool_items - Removed
list_generic_tools - Removed
list_gps_positions - Removed
list_grouped_checklists_inspections - Removed
list_grouped_coordination_issue_status_count - Removed
list_grouped_recycled_checklists_inspections - Removed
list_harm_sources - Removed
list_hazards - Removed
list_image_categories - Removed
list_image_category_ids_that_contain_images - Removed
list_images - Removed
list_inactive_company_people - Removed
list_inactive_project_people - Removed
list_incident_action_types - Removed
list_incident_alert_recipients - Removed
list_incident_alerts - Removed
list_incident_filing_types - Removed
list_incident_severity_levels - Removed
list_incidents - Removed
list_injuries - Removed
list_inspection_item_references - Removed
list_inspection_logs - Removed
list_inspection_types - Removed
list_inspection_users - Removed
list_inspectors - Removed
list_instruction_types_on_a_project - Removed
list_instructions_on_a_project - Removed
list_item_response_sets - Removed
list_lien_waivers - Removed
list_line_item_type_categories - Removed
list_line_item_types - Removed
list_links - Removed
list_location_filter_options - Removed
list_locations - Removed
list_lookaheads - Removed
list_lov_codes_for_a_field_company - Removed
list_lov_codes_for_a_field_project - Removed
list_manpower_logs - Removed
list_manpower_logs_contact_options - Removed
list_manpower_logs_vendor_options - Removed
list_manual_forecast_line_items - Removed
list_manual_holds_for_a_given_invoice - Removed
list_materials - Removed
list_meeting_categories - Removed
list_meeting_templates - Removed
list_meetings - Removed
list_meetings_project - Removed
list_monitoring_resources - Removed
list_near_misses - Removed
list_notes_logs - Removed
list_observation_assignee_options - Removed
list_observation_category_configurable_field_sets - Removed
list_observation_default_distribution_members - Removed
list_observation_item_response_logs - Removed
list_observation_items - Removed
list_observation_potential_distribution_members - Removed
list_observation_types - Removed
list_observations_response_logs - Removed
list_of_actual_production_quantity_ids - Removed
list_of_all_time_and_material_equipment_logs - Removed
list_of_budget_change_histories - Removed
list_of_change_history_events_for_an_action_plan - Removed
list_of_company_action_plan_templates - Removed
list_of_company_level_emails - Removed
list_of_deleted_submittals - Removed
list_of_document_revisions_company - Removed
list_of_document_revisions_project - Removed
list_of_emails - Removed
list_of_number_filter_options - Removed
list_of_project_action_plan_templates - Removed
list_of_punch_list_assignee_filter_options - Removed
list_of_punch_list_vendor_filter_options - Removed
list_of_purchase_order_contracts - Removed
list_operations - Removed
list_payment_applications_owner_invoices_for_a_project - Removed
list_payment_applications_owner_invoices_for_prime_contract - Removed
list_payments_subtier_waivers - Removed
list_payments_subtiers_for_the_commitment - Removed
list_payments_subtiers_for_the_requisition - Removed
list_pdf_template_configs - Removed
list_permission_templates - Removed
list_permission_templates_for_a_company_user - Removed
list_plan_revision_logs - Removed
list_possible_assignees_company - Removed
list_possible_assignees_project - Removed
list_possible_tool_filter_values - Removed
list_potential_change_order_line_items - Removed
list_potential_change_orders - Removed
list_potential_distribution_members_for_specifications - Removed
list_potential_points_of_contact - Removed
list_prime_change_order_line_items - Removed
list_prime_contract_attachments - Removed
list_prime_contract_line_items - Removed
list_prime_contract_line_items_project - Removed
list_prime_contracts - Removed
list_productivity_logs - Removed
list_programs - Removed
list_programs_for_a_company_user - Removed
list_project_action_plan_template_items - Removed
list_project_action_plan_template_references - Removed
list_project_action_plan_template_sections - Removed
list_project_action_plan_template_test_record_requests - Removed
list_project_assignments_for_a_company_user - Removed
list_project_bid_types - Removed
list_project_checklist_templates - Removed
list_project_configurable_field_sets_v1_0 - Removed
list_project_configurable_field_sets_v2_1 - Removed
list_project_cost_codes - Removed
list_project_country_codes - Removed
list_project_dates_v1_0 - Removed
list_project_dates_v1_0_2 - Removed
list_project_dates_v2_0 - Removed
list_project_distribution_groups_distribution_groups - Removed
list_project_distribution_groups_with_ancestors - Removed
list_project_document_custom_tags - Removed
list_project_equipment_logs - Removed
list_project_equipment_maintenance_logs - Removed
list_project_fields - Removed
list_project_folders_and_files - Removed
list_project_inactive_users - Removed
list_project_inactive_vendors - Removed
list_project_inspection_template_item_reference - Removed
list_project_insurances - Removed
list_project_job_titles - Removed
list_project_links - Removed
list_project_locations - Removed
list_project_memberships - Removed
list_project_metadata_values - Removed
list_project_names_for_a_company_user - Removed
list_project_numbers_for_a_company_user - Removed
list_project_observation_types - Removed
list_project_owner_types - Removed
list_project_people - Removed
list_project_permission_templates - Removed
list_project_punch_item_templates - Removed
list_project_regions - Removed
list_project_roles - Removed
list_project_root_folder_children_company_scoped - Removed
list_project_segment_items - Removed
list_project_stages - Removed
list_project_stages_for_a_company_user - Removed
list_project_state_codes - Removed
list_project_status_snapshots - Removed
list_project_templates - Removed
list_project_tools - Removed
list_project_tools_2 - Removed
list_project_trades - Removed
list_project_types - Removed
list_project_types_for_a_company_user - Removed
list_project_upload_requirements - Removed
list_project_users - Removed
list_project_vendor_insurances - Removed
list_project_vendors - Removed
list_project_wbs_codes - Removed
list_project_wbs_patterns - Removed
list_project_wbs_segments - Removed
list_project_wbs_task_codes - Removed
list_project_webhooks_deliveries - Removed
list_project_webhooks_hooks - Removed
list_project_webhooks_resources - Removed
list_project_webhooks_triggers - Removed
list_projects - Removed
list_property_damages - Removed
list_punch_item_activities - Removed
list_punch_item_assignee_company_filter_options - Removed
list_punch_item_assignee_filter_options - Removed
list_punch_item_ball_in_court_filter_options - Removed
list_punch_item_closed_by_contact_filter_options - Removed
list_punch_item_creator_filter_options - Removed
list_punch_item_default_distribution_list - Removed
list_punch_item_final_approver_filter_options - Removed
list_punch_item_location_filter_options - Removed
list_punch_item_manager_filter_options - Removed
list_punch_item_trade_filter_options - Removed
list_punch_item_type_filter_options - Removed
list_punch_item_types - Removed
list_punch_items - Removed
list_punch_list_assignee_options - Removed
list_punch_list_manager_options - Removed
list_punch_list_read_user_options - Removed
list_purchase_order_contract_detail_line_items - Removed
list_purchase_order_contract_line_items - Removed
list_quantity_logs - Removed
list_recent_activity_items - Removed
list_recycled_action_plan - Removed
list_recycled_action_plan_item_assignees - Removed
list_recycled_action_plan_items - Removed
list_recycled_action_plan_references - Removed
list_recycled_action_plan_sections - Removed
list_recycled_action_plan_template_approvers - Removed
list_recycled_action_plan_template_items - Removed
list_recycled_action_plan_template_receivers - Removed
list_recycled_action_plan_template_sections - Removed
list_recycled_action_plan_test_record_requests - Removed
list_recycled_action_plan_test_records - Removed
list_recycled_actions - Removed
list_recycled_checklist_inspection_comments - Removed
list_recycled_checklist_inspection_sections - Removed
list_recycled_checklist_inspections_item_attachments - Removed
list_recycled_checklist_templates - Removed
list_recycled_checklists_inspections - Removed
list_recycled_company_action_plan_template_items_assignees - Removed
list_recycled_company_action_plan_template_references - Removed
list_recycled_company_action_plan_template_test_record_requests - Removed
list_recycled_company_action_plan_templates - Removed
list_recycled_company_checklist_templates - Removed
list_recycled_company_form_templates - Removed
list_recycled_environmentals - Removed
list_recycled_incidents - Removed
list_recycled_injuries - Removed
list_recycled_links - Removed
list_recycled_near_misses - Removed
list_recycled_observation_items - Removed
list_recycled_project_action_plan_template_references - Removed
list_recycled_project_forms - Removed
list_recycled_property_damages - Removed
list_recycled_rfis - Removed
list_recycled_witness_statements - Removed
list_regions_for_a_company_user - Removed
list_requested_changes - Removed
list_requested_changes_for_a_schedule_or_a_task - Removed
list_requisition_compliance_attachments - Removed
list_requisition_compliance_documents - Removed
list_requisition_subcontractor_invoice_change_histories - Removed
list_requisition_subcontractor_invoice_change_order_items - Removed
list_requisition_subcontractor_invoice_contract_detail_items - Removed
list_requisition_subcontractor_invoice_contract_items - Removed
list_requisitions_subcontractor_invoices_for_project - Removed
list_resources - Removed
list_resources_project - Removed
list_responses - Removed
list_responses_for_a_generic_tool_item - Removed
list_responses_in_the_specified_item_response_set - Removed
list_rfi_default_distribution - Removed
list_rfi_replies - Removed
list_rfis - Removed
list_rfq_quotes - Removed
list_rfq_responses - Removed
list_rfqs - Removed
list_roles_for_a_company_user - Removed
list_safety_violation_logs - Removed
list_schedule_imports - Removed
list_schedule_resources - Removed
list_schedules - Removed
list_signatures_time_and_material_entries - Removed
list_signatures_timesheets - Removed
list_specification_areas_for_a_project - Removed
list_specification_configurations - Removed
list_specification_section_divisions - Removed
list_specification_section_divisions_for_a_project - Removed
list_specification_section_revisions_for_a_specification - Removed
list_specification_section_terms - Removed
list_specification_sections - Removed
list_specification_sections_for_a_project - Removed
list_specification_sections_for_a_project_specification_areas - Removed
list_specification_sections_revisions_for_a_project - Removed
list_specification_sections_revisions_specification_areas - Removed
list_specification_sets - Removed
list_specification_sets_for_a_project - Removed
list_specification_uploads - Removed
list_standard_cost_code_lists - Removed
list_standard_cost_codes - Removed
list_status_change_history_for_a_coordination_issue - Removed
list_status_filter_options - Removed
list_statuses_available_for_a_generic_tool - Removed
list_statuses_for_a_generic_tool - Removed
list_sub_jobs - Removed
list_submittal_associated_attachments - Removed
list_submittal_packages_on_a_project - Removed
list_submittal_responses - Removed
list_submittal_responses_project - Removed
list_submittal_statuses - Removed
list_submittal_types - Removed
list_submittals - Removed
list_submittals_on_a_project - Removed
list_task_item_categories - Removed
list_task_item_comments - Removed
list_task_items - Removed
list_task_items_assignee_options - Removed
list_task_items_distribution_member_options - Removed
list_tasks - Removed
list_tax_codes - Removed
list_tax_types - Removed
list_time_and_material_timecards - Removed
list_timecard_data - Removed
list_timecard_entries - Removed
list_timecard_entries_company - Removed
list_timecard_entries_project - Removed
list_timecard_time_types - Removed
list_timecard_time_types_company - Removed
list_timeline_events - Removed
list_tools_enabled_for_workflows - Removed
list_trades - Removed
list_unit_of_measure_categories - Removed
list_units_of_measure - Removed
list_uom_categories_for_project_bids - Removed
list_user_filter_options_company - Removed
list_user_filter_options_project - Removed
list_user_permissions_company - Removed
list_user_permissions_project - Removed
list_users_with_access_to_a_generic_tool - Removed
list_users_with_access_to_a_generic_tool_item - Removed
list_visitor_logs - Removed
list_waste_logs - Removed
list_watcher_filter_options - Removed
list_wbs_attribute_items - Removed
list_wbs_attributes - Removed
list_wbs_code_ids - Removed
list_wbs_codes - Removed
list_wbs_codes_filter_options - Removed
list_wbs_codes_filters - Removed
list_weather_logs_v1_0 - Removed
list_weather_logs_v1_1 - Removed
list_webhooks_deliveries - Removed
list_webhooks_hooks - Removed
list_webhooks_resources - Removed
list_webhooks_resources_api_versions - Removed
list_webhooks_triggers - Removed
list_witness_statements - Removed
list_work_activities - Removed
list_work_logs - Removed
list_work_order_contract_detail_line_items - Removed
list_work_order_contract_line_items - Removed
list_work_order_contracts - Removed
list_work_scopes - Removed
list_workflow_activity_histories - Removed
list_workflow_bulk_replace_requests - Removed
list_workflow_instances - Removed
list_workflow_instances_company - Removed
list_workflow_instances_project - Removed
list_workflow_managers_company - Removed
list_workflow_managers_project - Removed
list_workflow_permanent_logs_company - Removed
list_workflow_permanent_logs_project - Removed
list_workflow_presets_company - Removed
list_workflow_presets_project - Removed
list_workflow_templates - Removed
lists_the_app_and_tool_level_permissions_for_the_user - Removed
make_job_title_available_to_group - Removed
make_tag_available_to_group - Removed
merges_one_or_more_pdfs_of_a_requisition_into_a_single_pdf - Removed
modify_an_existing_markup - Removed
modify_markups - Removed
move_action_plan_back_into_draft - Removed
move_action_plan_into_in_progress - Removed
move_action_plan_item_within_or_across_sections - Removed
move_action_plan_section - Removed
move_catalog - Removed
move_company_action_plan_template_into_in_revision - Removed
move_company_action_plan_template_into_published - Removed
partially_updates_a_line_item_on_an_inter_project_transfer - Removed
partially_updates_an_inter_project_transfer_header - Removed
patch_company_role - Removed
post_company_role - Removed
preview_asset_deletion_company - Removed
preview_asset_deletion_project - Changed
procore_api_call8 fields changed- changed
Input schema / properties / body / descriptionPrevious value: -"JSON request body for POST/PUT/PATCH calls"New value: +"JSON request body for POST/PUT/PATCH. Use the exact field names and nesting from procore_get_endpoint_details; ignored on GET and DELETE." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Override the default Procore-Company-Id header"New value: +"Overrides the Procore-Company-Id header for this call only; defaults to the configured company" - changed
Input schema / properties / method / descriptionPrevious value: -"HTTP method"New value: +"HTTP method for the endpoint, exactly as reported by the discovery tools" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated endpoints"New value: +"1-indexed page number for paginated endpoints (default 1)" - changed
Input schema / properties / path / descriptionPrevious value: -"API path with placeholders, e.g. /rest/v1.0/projects/{project_id}/rfis"New value: +"API path with placeholders left intact, e.g. '/rest/v1.0/projects/{project_id}/rfis'. Supply the values via path_params rather than interpolating them here." - changed
Input schema / properties / path_params / descriptionPrevious value: -"Substitutions for path placeholders, e.g. { project_id: '12345' }"New value: +"Values substituted into the path's {placeholders}, e.g. { project_id: '12345' }. Required whenever the path contains a placeholder that procore_set_config does not already supply." - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Items per page, 1-100 (default 100)" - changed
Input schema / properties / query_params / descriptionPrevious value: -"Query parameters. Use double underscores for nested brackets: filters__status becomes filters[status]"New value: +"Query-string parameters. Use double underscores for Procore's bracket syntax: filters__status becomes filters[status]."
- Changed
procore_discover_endpoints4 fields changed- changed
Input schema / properties / category / descriptionPrevious value: -"Top-level category, e.g. 'Project Management', 'Core', 'Construction Financials'"New value: +"Top-level category, exactly as returned by procore_discover_categories, e.g. 'Project Management', 'Core', 'Construction Financials'" - changed
Input schema / properties / method_filter / descriptionPrevious value: -"Restrict results to a single HTTP method"New value: +"Restrict results to a single HTTP method — useful to list only the reads (GET) in a module" - changed
Input schema / properties / module / descriptionPrevious value: -"Module within the category, e.g. 'RFI', 'Submittals', 'Punch List'"New value: +"Module within the category, e.g. 'RFI', 'Submittals', 'Punch List'. Ignored unless category is also given." - changed
Input schema / properties / search / descriptionPrevious value: -"Substring filter applied to endpoint summary text"New value: +"Case-insensitive substring matched against endpoint summary text; combine with category to narrow a large module"
- Changed
procore_get_endpoint_details1 field changed- changed
Input schema / properties / operation_id / descriptionPrevious value: -"The operationId returned by procore_discover_endpoints, e.g. 'RestV10ProjectsProjectIdRfisGet'"New value: +"The exact operationId from procore_discover_endpoints or procore_search_endpoints, e.g. 'RestV10ProjectsProjectIdRfisGet'. Case-sensitive; not a URL path."
- Changed
procore_search_endpoints1 field changed- changed
Input schema / properties / query / descriptionPrevious value: -"Search term, e.g. 'RFI', 'budget', 'punch list', 'submittal'"New value: +"Search term matched against endpoint summaries, tags, and paths, e.g. 'RFI', 'budget', 'punch list'. Single keywords match more broadly than phrases."
- Changed
procore_set_config3 fields changed- changed
Input schema / properties / key / descriptionPrevious value: -"Config key — currently 'company_id' or 'project_id'"New value: +"Which default to set. These are the only accepted keys; any other value is rejected." - added
Input schema / properties / key / enumAdded value: +[ + "company_id", + "project_id" +] - changed
Input schema / properties / value / descriptionPrevious value: -"New value (string; numbers are coerced server-side)"New value: +"The id to store, as a string of digits (e.g. '12345'). Coerced to an integer; a non-numeric value is rejected."
- Removed
project_folder_and_file_index - Removed
project_folder_and_file_index_company_scoped - Removed
project_markup_indicators_by_items - Removed
publish_drawing_revisions - Removed
punch_list_available_final_approvers - Removed
reactivate_company_user - Removed
reactivate_company_vendor - Removed
reactivate_project_user - Removed
reactivate_project_vendor - Removed
recycle_materials_in_bulk - Removed
recycle_rfi - Removed
recycles_a_direct_issue_document_soft_delete - Removed
recycles_a_material - Removed
recycles_a_material_requirement - Removed
recycles_a_receipt - Removed
recycles_a_shipment_by_marking_it_as_recycled - Removed
recycles_a_transfer_document - Removed
recycles_an_adjustment_document - Removed
recycles_an_inter_project_transfer_document - Removed
refresh_a_workflow_instance_company - Removed
refresh_a_workflow_instance_project - Removed
remove_a_person_from_a_group - Removed
remove_a_response_from_an_item_response_set - Removed
remove_a_user_from_the_project - Removed
remove_alternative_response_set_from_project_checklist_template - Removed
remove_an_existing_markup - Removed
remove_change_order_package_from_a_requisition_subcontractor - Removed
remove_checklist_template_alternative_response_set - Removed
remove_company_checklist_template_alternative_response_set - Removed
remove_current_project_company - Removed
remove_current_project_project - Removed
remove_existing_labels_to_specified_resources - Removed
remove_job_title_from_being_available_to_group - Removed
remove_project_from_group - Removed
remove_role_from_project - Removed
remove_segment_from_the_project_pattern - Removed
remove_signature_from_timecard_entry_project - Removed
remove_tag_availability_to_group - Removed
remove_tag_instance_from_person - Removed
remove_tag_instance_from_project - Removed
remove_values_from_custom_field - Removed
remove_viewpoint_association_from_issue_rest_v2_0_mm_soft - Removed
reopen_checklist_inspection - Removed
reorder_company_role - Removed
resolve_scene_id_to_bim_model_id_for_viewpoint_deep_linking - Removed
respond_to_a_workflow_instance_company - Removed
respond_to_a_workflow_instance_project - Removed
restart_a_workflow_instance_company - Removed
restart_a_workflow_instance_project - Removed
restore_a_recycled_company_checklist_template - Removed
restore_a_soft_deleted_coordination_issue_rest_v2_0 - Removed
restore_a_time_and_material_entry - Removed
restore_change_event - Removed
restore_company_form_template - Removed
restore_coordination_issue_from_recycle_bin - Removed
restore_deleted_checklist_inspection - Removed
restore_environmental - Removed
restore_equipment - Removed
restore_equipment_company - Removed
restore_materials_in_bulk - Removed
restore_project_form - Removed
restore_property_damage - Removed
restore_recycled_action - Removed
restore_recycled_action_plan - Removed
restore_recycled_checklist_template - Removed
restore_recycled_company_action_plan_template - Removed
restore_recycled_incident - Removed
restore_recycled_injury - Removed
restore_recycled_link - Removed
restore_recycled_near_miss - Removed
restore_recycled_observation - Removed
restore_recycled_witness_statement - Removed
restoring_an_equipment - Removed
retrieve_a_line_item_by_id_company - Removed
retrieve_a_line_item_by_id_project - Removed
retrieve_a_line_item_group_by_id_company - Removed
retrieve_a_line_item_group_by_id_project - Removed
retrieve_a_list_of_markups - Removed
retrieve_a_note_by_id_in_the_project - Removed
retrieve_a_note_by_id_in_the_project_company - Removed
retrieve_a_project_proposal_by_id - Removed
retrieve_a_project_proposal_by_id_company - Removed
retrieve_a_single_webhook_for_company - Removed
retrieve_a_single_webhook_for_project - Removed
retrieve_all_line_item_groups_of_a_proposal_company - Removed
retrieve_all_line_item_groups_of_a_proposal_project - Removed
retrieve_all_line_items_of_a_proposal_company - Removed
retrieve_all_line_items_of_a_proposal_project - Removed
retrieve_all_notes_in_the_project - Removed
retrieve_all_notes_in_the_project_company - Removed
retrieve_all_project_proposals - Removed
retrieve_all_project_proposals_company - Removed
retrieve_details_for_the_markup - Removed
retrieve_pre_processed_file_metadata_company_scope_v2 - Removed
retrieve_pre_processed_file_metadata_project_scope_v2 - Removed
retrieve_recycled_rfi - Removed
retrieve_thumbnails_for_a_file_company_scope - Removed
retrieve_thumbnails_for_a_file_project_scope - Removed
retrieve_thumbnails_for_multiple_files_company_scope - Removed
retrieve_thumbnails_for_multiple_files_project_scope - Removed
retrieves_recycled_resources_matching_the_specified_filter - Removed
return_a_filter - Removed
return_a_list_of_all_submittals - Removed
return_a_pdf_template_config - Removed
return_company_schedule_summary - Removed
returns_a_paginated_list_of_labels_for_the_specified_company - Removed
returns_avatar_of_the_current_user - Removed
returns_specific_template - Removed
review_requested_changes - Removed
review_requested_changes_project - Removed
revoke_a_persons_login - Removed
save_aemp_2_0_telematics_data - Removed
save_markups - Removed
save_stamp - Removed
save_telematics_stats_data - Removed
search_all_equipment_company - Removed
search_all_equipment_project - Removed
search_purchase_order_lines_linked_to_a_shipment - Removed
send_a_response_from_a_generic_tool_item_and_then_update - Removed
send_all_unsent_punch_item_emails - Removed
send_checklist_inspection_email - Removed
send_email_drawing_revision_emails - Removed
send_email_for_file_sharing - Removed
send_email_specification_section_revision_emails - Removed
send_invite - Removed
send_observation_item_email - Removed
send_punch_item_email - Removed
send_unsent_observation_items - Removed
send_unsent_punch_items - Removed
send_unsent_task_items - Removed
send_urgent_error - Removed
set_current_project_project - Removed
sets_a_modifier_on_shipment_line_items - Removed
setup_managed_equipment_taxonomy - Removed
show_a_bid_within_a_company - Removed
show_a_bid_within_a_project - Removed
show_a_budgeted_production_quantity - Removed
show_a_commitment_contract - Removed
show_a_company_inspection_template_item_evidence_configuration - Removed
show_a_compliance_document_purchase_order_contracts - Removed
show_a_compliance_document_work_order_contracts - Removed
show_a_coordination_issue_rest_v2_0 - Removed
show_a_crew - Removed
show_a_inspection_item_signature_request - Removed
show_a_meeting_template - Removed
show_a_project_inspection_template_item_evidence_configuration - Removed
show_a_signature_company - Removed
show_a_signature_project_time_and_material_entries - Removed
show_a_signature_project_timesheets - Removed
show_a_timesheet - Removed
show_accident_logs - Removed
show_action - Removed
show_action_plan - Removed
show_action_plan_approver_signature - Removed
show_action_plan_item - Removed
show_action_plan_item_assignee - Removed
show_action_plan_item_assignee_signature - Removed
show_action_plan_receiver_signature - Removed
show_action_plan_reference - Removed
show_action_plan_section - Removed
show_action_plan_template_approver - Removed
show_action_plan_template_receiver - Removed
show_action_plan_test_record_request - Removed
show_action_plan_verification_method - Removed
show_actual_production_quantity - Removed
show_advanced_export_options_for_external_rfi - Removed
show_affliction_type - Removed
show_all_commitment_change_order_batches - Removed
show_all_commitment_change_orders - Removed
show_all_prime_change_order_batches - Removed
show_all_prime_change_orders - Removed
show_alternative_response_set - Removed
show_an_async_job_for_a_company - Removed
show_an_equipment_category - Removed
show_an_equipment_log - Removed
show_an_equipment_make - Removed
show_an_equipment_model - Removed
show_an_equipment_type - Removed
show_an_individual_managed_equipment_maintenance_log_attachment - Removed
show_an_individual_time_and_material_attachment - Removed
show_an_project_equipment_log - Removed
show_app_configuration - Removed
show_app_installation - Removed
show_asset_by_code_company - Removed
show_asset_by_code_project - Removed
show_asset_company - Removed
show_asset_project - Removed
show_attachment_company - Removed
show_attachment_project - Removed
show_bid_package_company - Removed
show_bid_package_project - Removed
show_bid_within_a_bid_package - Removed
show_billing_period_for_project - Removed
show_bim_file - Removed
show_bim_file_extraction - Removed
show_bim_geometry_file_bundle - Removed
show_bim_level - Removed
show_bim_model - Removed
show_bim_model_revision - Removed
show_bim_model_revision_plan - Removed
show_bim_plan - Removed
show_bim_viewpoint - Removed
show_budget_line_item - Removed
show_budget_meta_data - Removed
show_budget_modification - Removed
show_calendar_item - Removed
show_call_logs - Removed
show_change_event - Removed
show_change_history - Removed
show_change_order_package - Removed
show_change_order_request - Removed
show_checklist - Removed
show_checklist_comment - Removed
show_checklist_inspection - Removed
show_checklist_item - Removed
show_checklist_item_response - Removed
show_checklist_item_type - Removed
show_checklist_schedule - Removed
show_checklist_section - Removed
show_checklist_signature_request - Removed
show_checklist_template - Removed
show_classification_company - Removed
show_classification_project - Removed
show_commitment_change_order - Removed
show_commitment_change_order_batch - Removed
show_commitment_change_order_line_item - Removed
show_commitment_contract - Removed
show_commitment_contract_line_item - Removed
show_commitment_contract_summary - Removed
show_communication - Removed
show_communication_thread - Removed
show_company_action_plan_template - Removed
show_company_action_plan_template_item_assignee - Removed
show_company_action_plan_template_reference - Removed
show_company_action_plan_template_test_record_request - Removed
show_company_action_plan_type - Removed
show_company_checklist_section - Removed
show_company_checklist_template - Removed
show_company_configuration - Removed
show_company_file - Removed
show_company_file_version - Removed
show_company_folder - Removed
show_company_form_template - Removed
show_company_form_template_from_project - Removed
show_company_inspection_template_item - Removed
show_company_inspection_template_item_reference - Removed
show_company_insurance - Removed
show_company_level_email_communication - Removed
show_company_office - Removed
show_company_security_settings - Removed
show_company_segment_item - Removed
show_company_upload - Removed
show_company_user - Removed
show_company_user_2 - Removed
show_company_vendor - Removed
show_company_vendor_insurance - Removed
show_company_wbs_segment - Removed
show_compliance_documents_for_a_contract_work_order_contracts - Removed
show_compliance_documents_purchase_order_contracts - Removed
show_compliance_information_for_a_purchase_order_contract - Removed
show_compliance_information_for_a_work_order_contract - Removed
show_configurable_field_set - Removed
show_contract_payment - Removed
show_contributing_behavior - Removed
show_contributing_condition - Removed
show_coordination_issue - Removed
show_coordination_issue_count_by_status - Removed
show_coordination_issue_in_recycle_bin - Removed
show_coordination_issue_workflow_issue - Removed
show_correspondence_company - Removed
show_correspondence_project - Removed
show_cost_code - Removed
show_current_company_user - Removed
show_custom_field_definition - Removed
show_custom_field_definition_company - Removed
show_custom_field_lov_entry - Removed
show_custom_field_metadatum - Removed
show_custom_field_metadatum_company - Removed
show_custom_fields_section - Removed
show_daily_construction_report_logs - Removed
show_delay_logs - Removed
show_delivery_log - Removed
show_department - Removed
show_detail_for_requisition_subcontractor_invoice - Removed
show_direct_cost_item - Removed
show_direct_cost_line_item - Removed
show_document_upload - Removed
show_drawing_revision - Removed
show_drawing_upload - Removed
show_dumpster_logs - Removed
show_email_communication - Removed
show_environmental - Removed
show_equipment_change_history - Removed
show_equipment_company - Removed
show_equipment_logs - Removed
show_equipment_maintenance_log - Removed
show_equipment_project - Removed
show_equipment_timecard_entry_project - Removed
show_external_rfi - Removed
show_fieldset - Removed
show_filing_type - Removed
show_first_prime_contract - Removed
show_form - Removed
show_generic_tool_item - Removed
show_generic_tool_item_project - Removed
show_gps_position - Removed
show_harm_source - Removed
show_hazard - Removed
show_image - Removed
show_image_category - Removed
show_incident - Removed
show_incident_action_type - Removed
show_incident_alert - Removed
show_incident_alert_recipient - Removed
show_incident_severity_level - Removed
show_injury - Removed
show_inspection_logs - Removed
show_inspection_type - Removed
show_instruction - Removed
show_instruction_type - Removed
show_item_response_set - Removed
show_item_response_set_response - Removed
show_line_item_type - Removed
show_link - Removed
show_location - Removed
show_lookahead - Removed
show_manpower_logs - Removed
show_material - Removed
show_meeting - Removed
show_meeting_project - Removed
show_near_miss - Removed
show_new_change_event - Removed
show_next_available_number_for_observation_items - Removed
show_notes_logs - Removed
show_observation_item - Removed
show_or_create_document_markup_downloadable_pdf - Removed
show_payment_application_owner_invoice - Removed
show_permission_manifest - Removed
show_plan_revision_logs - Removed
show_potential_change_order_line_item - Removed
show_potential_change_orders - Removed
show_prime_change_order - Removed
show_prime_change_order_batch - Removed
show_prime_change_order_line_item - Removed
show_prime_contract - Removed
show_prime_contract_line_item - Removed
show_prime_contract_line_item_project - Removed
show_prime_contract_project - Removed
show_prime_contract_summary - Removed
show_productivity_logs - Removed
show_program - Removed
show_project - Removed
show_project_action_plan_template_reference - Removed
show_project_bid_type - Removed
show_project_checklist_template - Removed
show_project_date - Removed
show_project_date_2 - Removed
show_project_distribution_group_distribution_groups - Removed
show_project_distribution_groups_with_ancestors - Removed
show_project_equipment_maintenance_log - Removed
show_project_file - Removed
show_project_file_version - Removed
show_project_folder - Removed
show_project_folder_company_scoped - Removed
show_project_inspection_template_item_reference - Removed
show_project_insurance - Removed
show_project_location - Removed
show_project_owner_type - Removed
show_project_region - Removed
show_project_schedule_settings - Removed
show_project_stage - Removed
show_project_type - Removed
show_project_upload - Removed
show_project_user - Removed
show_project_vendor - Removed
show_project_vendor_insurance - Removed
show_project_wbs_segment - Removed
show_property_damage - Removed
show_punch_assignment - Removed
show_punch_item - Removed
show_punch_item_type - Removed
show_purchase_order_contract - Removed
show_purchase_order_contract_detail_line_item - Removed
show_purchase_order_contract_line_item - Removed
show_quantity_logs - Removed
show_recent_timecard_entry_wbs_code_ids_deprecated - Removed
show_recycled_action - Removed
show_recycled_action_plan - Removed
show_recycled_action_plan_item - Removed
show_recycled_action_plan_item_assignee - Removed
show_recycled_action_plan_reference - Removed
show_recycled_action_plan_section - Removed
show_recycled_action_plan_template_approver - Removed
show_recycled_action_plan_template_items - Removed
show_recycled_action_plan_template_receiver - Removed
show_recycled_action_plan_template_section - Removed
show_recycled_action_plan_test_record - Removed
show_recycled_action_plan_test_record_request - Removed
show_recycled_checklist_inspection - Removed
show_recycled_checklist_template - Removed
show_recycled_company_action_plan_template - Removed
show_recycled_company_action_plan_template_items_assignee - Removed
show_recycled_company_action_plan_template_reference - Removed
show_recycled_company_action_plan_template_test_record_request - Removed
show_recycled_company_checklist_template - Removed
show_recycled_company_form_template - Removed
show_recycled_environmental - Removed
show_recycled_incident - Removed
show_recycled_injury - Removed
show_recycled_near_miss - Removed
show_recycled_observation - Removed
show_recycled_project_action_plan_template_reference - Removed
show_recycled_project_form - Removed
show_recycled_property_damage - Removed
show_recycled_witness_statement - Removed
show_requisition_subcontractor_invoice - Removed
show_requisition_subcontractor_invoice_change_order_item - Removed
show_requisition_subcontractor_invoice_contract_detail_item - Removed
show_requisition_subcontractor_invoice_contract_item - Removed
show_resource - Removed
show_resource_assignment - Removed
show_resource_project - Removed
show_response - Removed
show_rfi - Removed
show_rfi_in_pdf_format - Removed
show_rfi_reply - Removed
show_rfq - Removed
show_rfq_quote - Removed
show_rfq_response - Removed
show_rounding_configuration - Removed
show_safety_violation_logs - Removed
show_specification_section_revision - Removed
show_specification_section_revision_project - Removed
show_specification_set - Removed
show_standard_cost_code - Removed
show_standard_cost_code_list - Removed
show_sub_job - Removed
show_submittal - Removed
show_submittal_in_pdf_format - Removed
show_submittal_project - Removed
show_task - Removed
show_task_item - Removed
show_tax_code - Removed
show_tax_type - Removed
show_the_schedule_integration_type_for_a_project - Removed
show_time_and_material_entry - Removed
show_time_and_material_equipment_log - Removed
show_time_and_material_notification - Removed
show_time_and_material_timecard - Removed
show_timecard_entry - Removed
show_timecard_entry_change_history_company - Removed
show_timecard_entry_company - Removed
show_timecard_entry_project - Removed
show_timesheet_approval_status_filters - Removed
show_timesheet_billable_filters - Removed
show_timesheet_created_by_filters - Removed
show_timesheet_crews_filters - Removed
show_timesheet_department_filters - Removed
show_timesheet_employee_filters - Removed
show_timesheet_employee_id_filters - Removed
show_timesheet_location_filters - Removed
show_timesheet_office_filters - Removed
show_timesheet_project_filters - Removed
show_timesheet_region_filters - Removed
show_timesheet_sub_job_filters - Removed
show_timesheet_time_type_filters - Removed
show_timesheet_to_budget_configuration - Removed
show_timesheet_wbs_code_filters - Removed
show_timesheet_work_classification_filters - Removed
show_todo - Removed
show_trade - Removed
show_unit_of_measure - Removed
show_user_info - Removed
show_visitor_logs - Removed
show_waste_logs - Removed
show_weather_log - Removed
show_weather_logs - Removed
show_witness_statement - Removed
show_work_activity - Removed
show_work_logs - Removed
show_work_order_contract - Removed
show_work_order_contract_detail_line_item - Removed
show_work_order_contract_line_item - Removed
show_workflow_activity_history - Removed
show_workflow_bulk_replace_request - Removed
show_workflow_instance - Removed
stop_temporary_workflow_bulk_replace_request - Removed
sync_budget_line_items - Removed
sync_calendar_items - Removed
sync_change_order_requests - Removed
sync_company_insurances - Removed
sync_company_insurances_alternative - Removed
sync_company_users - Removed
sync_company_vendor_insurances - Removed
sync_company_vendors - Removed
sync_cost_codes - Removed
sync_direct_cost_items - Removed
sync_direct_cost_line_items - Removed
sync_line_item_types - Removed
sync_material_requirements_headers - Removed
sync_material_requirements_lines - Removed
sync_potential_change_order_line_items - Removed
sync_potential_change_orders - Removed
sync_prime_contract_line_items - Removed
sync_project_insurances - Removed
sync_project_vendor_insurances - Removed
sync_projects - Removed
sync_purchase_order_contract_line_items - Removed
sync_purchase_order_contracts - Removed
sync_purchase_order_headers - Removed
sync_purchase_order_lines - Removed
sync_standard_cost_codes - Removed
sync_sub_jobs - Removed
sync_tasks - Removed
sync_tax_codes - Removed
sync_tax_types - Removed
sync_todos - Removed
sync_units_of_measure - Removed
sync_work_order_contract_line_items - Removed
sync_work_order_contracts - Removed
syncs_materials - Removed
terminate_a_workflow_instance_company_public - Removed
terminate_a_workflow_instance_project_public - Removed
toggle_checklist_section_not_applicable_status_patch - Removed
toggle_checklist_section_not_applicable_status_put - Removed
trigger_pre_processing_for_a_file_company_scope_v2 - Removed
trigger_pre_processing_for_a_file_project_scope_v2 - Removed
triggers_a_recalculation_of_cached_data_for_the_specified - Removed
unassign_sensors_from_materials - Removed
unassign_the_attribute_items_from_the_wbs_codes - Removed
update_a_bid_from_a_bid_package - Removed
update_a_bid_within_a_company - Removed
update_a_budgeted_production_quantity - Removed
update_a_change_event_status - Removed
update_a_change_event_type - Removed
update_a_change_order_change_reason - Removed
update_a_checklist_inspection_schedule - Removed
update_a_classification - Removed
update_a_company_action_plan_template - Removed
update_a_compliance_document_purchase_order_contracts - Removed
update_a_compliance_document_work_order_contracts - Removed
update_a_coordination_issue_rest_v2_0 - Removed
update_a_crew - Removed
update_a_delay_log_type - Removed
update_a_document_snapshot_on_a_coordination_issue_rest_v2_0 - Removed
update_a_drawing_area - Removed
update_a_job_title - Removed
update_a_line_item_group_of_the_proposal_company - Removed
update_a_line_item_group_of_the_proposal_project - Removed
update_a_maintenance_record - Removed
update_a_maintenance_record_project - Removed
update_a_manual_forecast_line_item - Removed
update_a_manual_hold - Removed
update_a_note_of_the_project - Removed
update_a_note_of_the_project_company - Removed
update_a_pdf_template_config - Removed
update_a_pdf_template_config_update_default_project - Removed
update_a_permission_template_assignment_for_a_user_on_a_project - Removed
update_a_person - Removed
update_a_private_field_in_company_level_email_communication - Removed
update_a_private_field_in_email_communication - Removed
update_a_proposal_of_the_project - Removed
update_a_proposal_of_the_project_company - Removed
update_a_purchase_order - Removed
update_a_response - Removed
update_a_single_group - Removed
update_a_single_project - Removed
update_a_single_resource_request - Removed
update_a_task_item_comment - Removed
update_a_time_and_material_entry - Removed
update_a_time_and_material_equipment_log - Removed
update_a_time_and_material_notification - Removed
update_a_time_off_record - Removed
update_a_wbs_code - Removed
update_accident_log - Removed
update_action - Removed
update_action_plan - Removed
update_action_plan_item - Removed
update_action_plan_item_assignee - Removed
update_action_plan_section - Removed
update_action_plan_verification_method - Removed
update_actual_production_quantity - Removed
update_advance_ball_in_court - Removed
update_advanced_forecasting_rows - Removed
update_affliction_type - Removed
update_all_classification - Removed
update_all_company_segment_items - Removed
update_all_project_segment_items - Removed
update_an_attachments_metadata - Removed
update_an_equipment - Removed
update_an_equipment_make - Removed
update_an_equipment_model - Removed
update_an_equipment_type - Removed
update_an_estimate_line_item_of_the_proposal_company - Removed
update_an_estimate_line_item_of_the_proposal_project - Removed
update_an_project_equipment_log - Removed
update_app_configuration - Removed
update_asset_company - Removed
update_asset_project - Removed
update_assignees_and_workflow_manager_company - Removed
update_assignees_and_workflow_manager_project - Removed
update_attachment_company - Removed
update_attachment_project - Removed
update_bid_board_project - Removed
update_bid_board_project_custom_field - Removed
update_bid_form - Removed
update_bid_package - Removed
update_billing_period - Removed
update_bim_file - Removed
update_bim_level - Removed
update_bim_model - Removed
update_bim_model_revision - Removed
update_bim_plan - Removed
update_budget_line_item - Removed
update_budget_modification - Removed
update_calendar_item - Removed
update_call_log - Removed
update_catalog - Removed
update_category_name - Removed
update_change_event - Removed
update_change_event_production_quantity - Removed
update_change_order_package - Removed
update_change_order_request - Removed
update_checklist - Removed
update_checklist_inspection - Removed
update_checklist_item - Removed
update_checklist_section - Removed
update_classification - Removed
update_commitment_change_order - Removed
update_commitment_change_order_batch - Removed
update_commitment_change_order_line_item - Removed
update_commitment_contract - Removed
update_commitment_contract_line_item - Removed
update_company_action_plan_template_item_assignee - Removed
update_company_action_plan_type - Removed
update_company_checklist_section - Removed
update_company_checklist_template - Removed
update_company_currency_configuration - Removed
update_company_exchange_rates - Removed
update_company_file - Removed
update_company_folder - Removed
update_company_form_template - Removed
update_company_inspection_template_item - Removed
update_company_insurance - Removed
update_company_level_context - Removed
update_company_naming_standard_rule - Removed
update_company_office - Removed
update_company_patterns_segment_order - Removed
update_company_person - Removed
update_company_segment_item - Removed
update_company_tag - Removed
update_company_upload - Removed
update_company_user - Removed
update_company_vendor - Removed
update_company_vendor_business_register - Removed
update_company_vendor_insurance - Removed
update_company_wbs_segment - Removed
update_company_webhooks_hook - Removed
update_companys_logo - Removed
update_concierge_parameters - Removed
update_configurable_field_set - Removed
update_context - Removed
update_contract_compliance_document - Removed
update_contract_payment - Removed
update_contracts_invoice_configuration - Removed
update_contributing_behavior - Removed
update_contributing_condition - Removed
update_coordination_issue - Removed
update_coordination_issue_workflow_issue - Removed
update_cost_code - Removed
update_cost_item - Removed
update_current_project_company - Removed
update_current_project_project - Removed
update_custom_field - Removed
update_custom_field_definition - Removed
update_custom_field_metadatum - Removed
update_daily_construction_report_log - Removed
update_delay_log - Removed
update_deleted_equipment_serial_number - Removed
update_delivery_log - Removed
update_department - Removed
update_direct_cost_item - Removed
update_direct_cost_line_item - Removed
update_drawing - Removed
update_drawing_discipline_v1_0 - Removed
update_drawing_discipline_v1_1 - Removed
update_drawing_revision - Removed
update_drawing_set - Removed
update_dumpster_log - Removed
update_environmental - Removed
update_equipment - Removed
update_equipment_attachment_company - Removed
update_equipment_attachment_project - Removed
update_equipment_category - Removed
update_equipment_category_company - Removed
update_equipment_company_v2_0 - Removed
update_equipment_company_v2_1 - Removed
update_equipment_log - Removed
update_equipment_maintenance_log - Removed
update_equipment_make_company - Removed
update_equipment_model_company - Removed
update_equipment_project - Removed
update_equipment_project_bulk_update - Removed
update_equipment_status_company - Removed
update_equipment_timecard_entry_approval_status - Removed
update_equipment_timecard_entry_project - Removed
update_equipment_type_company - Removed
update_estimating_settings - Removed
update_field_rule - Removed
update_field_rule_project_scope - Removed
update_filing_type - Removed
update_form - Removed
update_forward_for_review - Removed
update_generic_tool - Removed
update_generic_tool_item - Removed
update_generic_tool_item_response - Removed
update_group - Removed
update_group_order_rank - Removed
update_harm_source - Removed
update_hazard - Removed
update_image - Removed
update_image_category - Removed
update_incident - Removed
update_incident_action_type - Removed
update_incident_severity_level - Removed
update_information_of_a_budget_change - Removed
update_injury - Removed
update_inspection_log - Removed
update_inspection_type - Removed
update_instruction - Removed
update_instruction_type - Removed
update_item_response_set - Removed
update_layer - Removed
update_layer_order_rank - Removed
update_line_item - Removed
update_line_item_type - Removed
update_link - Removed
update_linked_local_rfis_for_an_external_rfi - Removed
update_location - Removed
update_lookahead_task - Removed
update_manpower_log - Removed
update_material - Removed
update_meeting - Removed
update_meeting_attendee_record - Removed
update_meeting_category - Removed
update_meeting_project - Removed
update_meeting_topic - Removed
update_meeting_topic_project - Removed
update_monitoring_resource - Removed
update_multiple_time_and_material_entries - Removed
update_near_miss - Removed
update_notes_log - Removed
update_observation_item - Removed
update_payment_application_owner_invoice_for_prime_contract - Removed
update_payment_application_owner_invoice_line_item_for_prime - Removed
update_payment_application_owner_invoice_markup_line_item - Removed
update_plan_revision_log - Removed
update_potential_change_order - Removed
update_potential_change_order_line_item - Removed
update_prime_change_order - Removed
update_prime_change_order_batch - Removed
update_prime_change_order_line_item - Removed
update_prime_contract - Removed
update_prime_contract_line_item - Removed
update_prime_contract_line_item_project - Removed
update_prime_contract_project - Removed
update_productivity_log - Removed
update_program - Removed
update_project - Removed
update_project_asset_type_attachment - Removed
update_project_bid_type - Removed
update_project_checklist_template - Removed
update_project_currency_configuration - Removed
update_project_distribution_group - Removed
update_project_equipment_maintenance_log - Removed
update_project_exchange_rates - Removed
update_project_file - Removed
update_project_folder - Removed
update_project_incidents_configuration - Removed
update_project_insurance - Removed
update_project_location - Removed
update_project_naming_standard_rule - Removed
update_project_observation_type - Removed
update_project_owner_type - Removed
update_project_patterns_segment_order - Removed
update_project_person - Removed
update_project_region - Removed
update_project_segment_item - Removed
update_project_stage - Removed
update_project_task - Removed
update_project_task_company - Removed
update_project_tools - Removed
update_project_type - Removed
update_project_upload - Removed
update_project_user - Removed
update_project_vendor - Removed
update_project_vendor_insurance - Removed
update_project_webhooks_hook - Removed
update_property_damage - Removed
update_punch_item - Removed
update_punch_item_assignment - Removed
update_punch_item_type - Removed
update_purchase_order_contract - Removed
update_purchase_order_contract_detail_line_item - Removed
update_purchase_order_contract_line_item - Removed
update_purchase_order_contract_subcontractor_sov_status - Removed
update_quantity_log - Removed
update_requisition_compliance_document - Removed
update_requisition_subcontractor_invoice - Removed
update_requisition_subcontractor_invoice_change_order_item - Removed
update_requisition_subcontractor_invoice_contract_detail_item - Removed
update_requisition_subcontractor_invoice_contract_item - Removed
update_requisition_subcontractor_invoice_whole_change_order_item - Removed
update_resource - Removed
update_resource_project - Removed
update_rfi - Removed
update_rfi_reply - Removed
update_rfq - Removed
update_rfq_quote - Removed
update_rfq_response - Removed
update_rounding_configuration - Removed
update_safety_violation_log - Removed
update_schedule_integration_type - Removed
update_schedule_metadata - Removed
update_specification_area - Removed
update_specification_configurations - Removed
update_specification_section_divisions - Removed
update_specification_section_revision - Removed
update_stamp - Removed
update_standard_cost_code - Removed
update_standard_cost_code_list - Removed
update_status_of_equipment_company - Removed
update_status_of_equipment_project - Removed
update_sub_job - Removed
update_subcategory_name - Removed
update_submittal - Removed
update_submittal_approver - Removed
update_submittal_response - Removed
update_task - Removed
update_task_item - Removed
update_tax_code - Removed
update_tax_type - Removed
update_the_change_event_settings_for_the_project - Removed
update_the_compliance_information_for_a_purchase_order_contract - Removed
update_the_compliance_information_for_a_work_order_contract - Removed
update_the_due_date_for_a_requisition_subcontractor_invoice - Removed
update_the_specifications_user_permissions - Removed
update_the_state_of_a_daily_log_header - Removed
update_time_and_material_timecard - Removed
update_timecard_entries - Removed
update_timecard_entry - Removed
update_timecard_entry_company - Removed
update_timecard_entry_project - Removed
update_timecard_entry_signature_project - Removed
update_timecard_time_type - Removed
update_timeline_event - Removed
update_timesheet_status - Removed
update_timesheet_to_budget_configuration - Removed
update_timesheet_v1_0 - Removed
update_timesheet_v1_1 - Removed
update_todo - Removed
update_unit_of_measure - Removed
update_unmanaged_equipment_project - Removed
update_user_permission - Removed
update_user_project_roles - Removed
update_vendor_project_roles - Removed
update_viewpoint_mapping_and_or_model_manager_viewpoint_content - Removed
update_visitor_log - Removed
update_waste_log - Removed
update_wbs_attribute_item - Removed
update_wbs_attributes - Removed
update_weather_log_v1_0 - Removed
update_weather_log_v1_1 - Removed
update_webhooks_hook - Removed
update_witness_statement - Removed
update_work_activity - Removed
update_work_log - Removed
update_work_order_contract - Removed
update_work_order_contract_detail_line_item - Removed
update_work_order_contract_line_item - Removed
update_work_order_contract_subcontractor_sov_status - Removed
update_workflow_bulk_replace_request - Removed
update_workflow_preset_company - Removed
update_workflow_preset_project - Removed
updates_a_company_inspection_template_item_evidence - Removed
updates_a_defect_resource - Removed
updates_a_line_item_for_a_defect - Removed
updates_a_line_item_of_a_shipment - Removed
updates_a_line_item_on_an_adjustment_document - Removed
updates_a_material_requirements_document_header - Removed
updates_a_project_inspection_template_item_evidence - Removed
updates_a_receipt_header - Removed
updates_a_single_purchase_order_line_item - Removed
updates_a_single_receipt_line_item - Removed
updates_a_transfer_document_header - Removed
updates_an_adjustment_document_header - Removed
updates_an_attachment_for_a_direct_issue - Removed
updates_an_attachment_for_a_material_requirements_resource - Removed
updates_an_attachment_for_a_purchase_order_resource - Removed
updates_an_attachment_for_a_receipt_resource - Removed
updates_an_attachment_for_a_transfer - Removed
updates_an_attachment_for_an_adjustment_resource - Removed
updates_an_attachment_for_an_inter_project_transfer - Removed
updates_an_existing_condition_for_a_specific_line_item - Removed
updates_attachment_for_a_defect_resource - Removed
updates_attachment_for_a_material_resource - Removed
updates_header_fields_of_a_direct_issue_document - Removed
updates_material_header_information - Removed
updates_multiple_line_items_for_a_defect - Removed
updates_notes_on_a_direct_issue_line_item - Removed
updates_properties_on_a_single_shipment - Removed
updates_properties_on_multiple_purchase_order_line_items - Removed
updates_properties_on_multiple_shipment_line_items - Removed
updates_quantity_on_a_direct_issue_line_item_location - Removed
updates_the_specified_transfer_line_item - Removed
upload_schedule_file_patch - Removed
upload_schedule_file_put - Removed
validate_custom_fields_values_with_configurable_field_set - Removed
verifies_if_a_material_can_be_deleted_by_checking_for_connected - Removed
verifies_if_a_purchase_order_can_be_deleted - Removed
verifies_if_a_shipment_can_be_deleted_by_checking_for_connected - Removed
verify_if_the_material_requirement_items_can_be_deleted - Removed
view_an_action_plan_test_record - Removed
view_an_electronic_signature - Removed
view_bid_form_company - Removed
view_bid_form_project - Removed
withdraw_an_electronic_signature
507 tool updates
v1.3.0- Added
bulk_create_equipment_timecard_entries - Removed
bulk_create_project - Added
bulk_create_project_timecard_entries - Removed
bulk_create_project_v1_0 - Changed
bulk_delete_attachments_project3 fields changed- added
Input schema / properties / asset_idAdded value: +{ + "description": "URL path parameter — unique identifier for the Asset", + "type": "string" +} - removed
Input schema / properties / asset_type_idRemoved value: -{ - "description": "URL path parameter — unique identifier for the Asset Type", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "company_id", - "project_id", - "asset_type_id" -]New value: +[ + "company_id", + "project_id", + "asset_id" +]
- Added
bulk_delete_attachments_project_asset_types - Removed
bulk_delete_attachments_project_v2_0 - Added
bulk_delete_project_tasks - Changed
bulk_delete_project_tasks_company3 fields changed- added
Input schema / properties / bid_board_project_idAdded value: +{ + "description": "URL path parameter — unique BidBoard project identifier", + "type": "string" +} - removed
Input schema / properties / project_idRemoved value: -{ - "description": "URL path parameter — unique project identifier", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "company_id", - "project_id" -]New value: +[ + "company_id", + "bid_board_project_id" +]
- Removed
bulk_delete_project_tasks_company_v2_0 - Added
check_pdf_generation_status_commitment_change_order_batches - Added
check_pdf_generation_status_commitment_change_orders - Added
check_pdf_generation_status_commitment_contracts - Added
check_pdf_generation_status_prime_change_order_batches - Added
check_pdf_generation_status_prime_change_orders - Added
check_pdf_generation_status_prime_contracts - Removed
check_pdf_generation_status_project - Removed
check_pdf_generation_status_project_v2_0 - Removed
check_pdf_generation_status_project_v2_0_2 - Removed
check_pdf_generation_status_project_v2_0_4 - Removed
check_pdf_generation_status_project_v2_0_5 - Removed
check_pdf_generation_status_project_v2_0_6 - Removed
create_a_compliance_document_project - Removed
create_a_compliance_document_project_v1_0 - Added
create_a_compliance_document_purchase_order_contracts - Added
create_a_compliance_document_work_order_contracts - Added
create_a_copy_of_the_action_plan_section_in_the_action_plan - Removed
create_a_copy_of_the_action_plan_section_in_the_action_plan_of - Added
create_a_copy_of_the_action_plan_template_item_company - Removed
create_a_copy_of_the_action_plan_template_item_in_the_items - Removed
create_a_copy_of_the_action_plan_template_item_in_the_items_2 - Added
create_a_copy_of_the_action_plan_template_item_project - Added
create_a_copy_of_the_action_plan_template_section_company - Removed
create_a_copy_of_the_action_plan_template_section_in_the_company - Removed
create_a_copy_of_the_action_plan_template_section_in_the_project - Added
create_a_copy_of_the_action_plan_template_section_project - Added
create_a_note_in_the_project - Changed
create_a_note_in_the_project_company3 fields changed- added
Input schema / properties / bid_board_project_idAdded value: +{ + "description": "URL path parameter — unique BidBoard project identifier", + "type": "string" +} - removed
Input schema / properties / project_idRemoved value: -{ - "description": "URL path parameter — unique project identifier", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "company_id", - "project_id", - "value" -]New value: +[ + "company_id", + "bid_board_project_id", + "value" +]
- Removed
create_a_note_in_the_project_company_v2_0 - Added
create_a_proposal_in_the_project - Changed
create_a_proposal_in_the_project_company8 fields changed- added
Input schema / properties / bid_board_project_idAdded value: +{ + "description": "URL path parameter — unique BidBoard project identifier", + "type": "string" +} - changed
Input schema / properties / exclusions / descriptionPrevious value: -"JSON request body field — the exclusions for this Estimating operation"New value: +"JSON request body field — the exclusions for this Bid Board operation" - changed
Input schema / properties / inclusions / descriptionPrevious value: -"JSON request body field — the inclusions for this Estimating operation"New value: +"JSON request body field — the inclusions for this Bid Board operation" - changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — the name for this Estimating operation"New value: +"JSON request body field — the name for this Bid Board operation" - changed
Input schema / properties / notes / descriptionPrevious value: -"JSON request body field — the notes for this Estimating operation"New value: +"JSON request body field — the notes for this Bid Board operation" - removed
Input schema / properties / project_idRemoved value: -{ - "description": "URL path parameter — unique project identifier", - "type": "string" -} - changed
Input schema / properties / scope_of_work / descriptionPrevious value: -"JSON request body field — the scope of work for this Estimating operation"New value: +"JSON request body field — the scope of work for this Bid Board operation" - changed
Input schema / requiredPrevious value: -[ - "company_id", - "project_id", - "name", - "type" -]New value: +[ + "company_id", + "bid_board_project_id", + "name", + "type" +]
- Removed
create_a_proposal_in_the_project_company_v2_0 - Added
create_attachment - Added
create_attachment_actions - Added
create_attachment_lists - Removed
create_attachment_project - Removed
create_attachment_project_v1_0 - Removed
create_attachment_project_v1_0_2 - Removed
create_attachment_project_v1_0_4 - Removed
create_attachment_project_v1_0_5 - Added
create_attachment_time_and_material_entry_attachments - Added
create_attachment_witness_statements - Added
create_line_items_and_line_item_groups_in_bulk_company - Removed
create_line_items_and_line_item_groups_in_bulk_to_the_project_2 - Added
create_meeting - Added
create_meeting_topic - Removed
create_meeting_topic_v1_0 - Removed
create_meeting_v1_0 - Added
create_prime_contract - Added
create_prime_contract_line_item - Removed
create_prime_contract_line_item_v1_0 - Removed
create_prime_contract_v1_0 - Added
create_project_task - Changed
create_project_task_company3 fields changed- added
Input schema / properties / bid_board_project_idAdded value: +{ + "description": "URL path parameter — unique BidBoard project identifier", + "type": "string" +} - removed
Input schema / properties / project_idRemoved value: -{ - "description": "URL path parameter — unique project identifier", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "company_id", - "project_id", - "value" -]New value: +[ + "company_id", + "bid_board_project_id", + "value" +]
- Removed
create_project_task_company_v2_0 - Added
create_resource - Removed
create_resource_v1_0 - Added
create_timecard_entry - Removed
create_timecard_entry_v1_0 - Removed
create_weather_log_project - Removed
create_weather_log_project_v1_0 - Added
create_weather_log_v1_0 - Added
create_weather_log_v1_1 - Added
creates_a_inspection_item_signature_request - Removed
creates_a_inspection_item_signature_request_project - Removed
creates_a_inspection_item_signature_request_project_v2_0 - Added
creates_a_inspection_item_signature_request_signature - Removed
delete_a_compliance_document_project - Removed
delete_a_compliance_document_project_v1_0 - Added
delete_a_compliance_document_purchase_order_contracts - Added
delete_a_compliance_document_work_order_contracts - Added
delete_a_note_from_the_project - Changed
delete_a_note_from_the_project_company3 fields changed- added
Input schema / properties / bid_board_project_idAdded value: +{ + "description": "URL path parameter — unique BidBoard project identifier", + "type": "string" +} - removed
Input schema / properties / project_idRemoved value: -{ - "description": "URL path parameter — unique project identifier", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "note_id", - "company_id", - "project_id" -]New value: +[ + "note_id", + "company_id", + "bid_board_project_id" +]
- Removed
delete_a_note_from_the_project_company_v2_0 - Added
delete_a_proposal_from_the_project - Changed
delete_a_proposal_from_the_project_company3 fields changed- added
Input schema / properties / bid_board_project_idAdded value: +{ + "description": "URL path parameter — unique BidBoard project identifier", + "type": "string" +} - removed
Input schema / properties / project_idRemoved value: -{ - "description": "URL path parameter — unique project identifier", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "proposal_id", - "company_id", - "project_id" -]New value: +[ + "proposal_id", + "company_id", + "bid_board_project_id" +]
- Removed
delete_a_proposal_from_the_project_company_v2_0 - Added
delete_meeting - Removed
delete_meeting_v1_0 - Added
delete_prime_contract - Removed
delete_prime_contract_v1_0 - Added
delete_project_task - Changed
delete_project_task_company3 fields changed- added
Input schema / properties / bid_board_project_idAdded value: +{ + "description": "URL path parameter — unique BidBoard project identifier", + "type": "string" +} - removed
Input schema / properties / project_idRemoved value: -{ - "description": "URL path parameter — unique project identifier", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "task_id", - "company_id", - "project_id" -]New value: +[ + "task_id", + "company_id", + "bid_board_project_id" +]
- Removed
delete_project_task_company_v2_0 - Added
delete_resource - Removed
delete_resource_v1_0 - Removed
delete_signature_project - Removed
delete_signature_project_v1_0 - Added
delete_signature_time_and_material_entries - Added
delete_signature_timesheets - Removed
delete_weather_log_project - Removed
delete_weather_log_project_v1_0 - Added
delete_weather_log_v1_0 - Added
delete_weather_log_v1_1 - Added
get_affected_company_filter_options_environmentals - Added
get_affected_company_filter_options_injuries - Added
get_affected_company_filter_options_near_misses - Removed
get_affected_company_filter_options_project - Removed
get_affected_company_filter_options_project_v1_0 - Removed
get_affected_company_filter_options_project_v1_0_2 - Removed
get_affected_company_filter_options_project_v1_0_4 - Added
get_affected_company_filter_options_property_damages - Added
get_affected_parties_filter_options_injuries - Added
get_affected_parties_filter_options_near_misses - Removed
get_affected_parties_filter_options_project - Removed
get_affected_parties_filter_options_project_v1_0 - Added
get_affected_persons_filter_options_injuries - Added
get_affected_persons_filter_options_near_misses - Removed
get_affected_persons_filter_options_project - Removed
get_affected_persons_filter_options_project_v1_0 - Changed
get_all_attachments_for_equipment_company2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
get_all_attachments_for_equipment_project2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
get_all_configurable_columns_for_adjustments2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
get_all_configurable_columns_for_defects2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
get_all_configurable_columns_for_materials2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Added
get_all_configurable_columns_material_requirements - Removed
get_all_configurable_columns_project - Removed
get_all_configurable_columns_project_v2_0 - Removed
get_all_configurable_columns_project_v2_0_2 - Removed
get_all_configurable_columns_project_v2_0_4 - Added
get_all_configurable_columns_purchase_orders - Added
get_all_configurable_columns_shipments - Added
get_all_configurable_columns_transfers - Changed
get_all_properties_for_a_resource_company2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Added
get_all_properties_for_a_resource_inter_project_transfers - Removed
get_all_properties_for_a_resource_project - Added
get_all_properties_for_a_resource_project_adjustments - Added
get_all_properties_for_a_resource_project_defects - Added
get_all_properties_for_a_resource_project_issuing - Added
get_all_properties_for_a_resource_project_material_requirements - Added
get_all_properties_for_a_resource_project_materials - Added
get_all_properties_for_a_resource_project_purchase_orders - Added
get_all_properties_for_a_resource_project_receipts - Added
get_all_properties_for_a_resource_project_shipments - Added
get_all_properties_for_a_resource_project_transfers - Removed
get_all_properties_for_a_resource_project_v2_0 - Removed
get_all_properties_for_a_resource_project_v2_0_10 - Removed
get_all_properties_for_a_resource_project_v2_0_11 - Removed
get_all_properties_for_a_resource_project_v2_0_2 - Removed
get_all_properties_for_a_resource_project_v2_0_4 - Removed
get_all_properties_for_a_resource_project_v2_0_6 - Removed
get_all_properties_for_a_resource_project_v2_0_7 - Removed
get_all_properties_for_a_resource_project_v2_0_8 - Removed
get_all_properties_for_a_resource_project_v2_0_9 - Changed
get_all_properties_for_adjustments2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
get_all_properties_for_defects2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
get_all_properties_for_issuing2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
get_all_properties_for_materials2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Added
get_all_properties_material_requirements - Removed
get_all_properties_project - Removed
get_all_properties_project_v2_0 - Removed
get_all_properties_project_v2_0_2 - Removed
get_all_properties_project_v2_0_4 - Added
get_all_properties_purchase_orders - Added
get_all_properties_shipments - Added
get_all_properties_transfers - Changed
get_all_resource_requests_for_a_single_project1 field changed- added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
get_all_resource_requests_for_projects_in_a_single_group1 field changed- added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
get_all_resource_requests_in_a_company1 field changed- added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
get_all_time_off_for_a_single_person2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
get_asset_naming_fields_company2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
get_asset_naming_fields_project2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Added
get_budget_note - Added
get_bulk_users_async_job_status - Changed
get_company_naming_standard_rules2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
get_company_workflowable_object_instance_histories2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Added
get_divisions_and_sets_options_for_specification_sections - Removed
get_divisions_and_sets_options_for_specification_sections_for_a - Changed
get_equipment_by_id_project2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
get_equipment_projects_company1 field changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +}
- Added
get_harm_source_filter_options_injuries - Added
get_harm_source_filter_options_near_misses - Removed
get_harm_source_filter_options_project - Removed
get_harm_source_filter_options_project_v1_0 - Changed
get_import_logs2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Added
get_list_of_deleted_specification_sections_for_a_project - Removed
get_list_of_deleted_specification_sections_for_a_project_company - Removed
get_list_of_deleted_specification_sections_for_a_project_v2_1 - Added
get_list_of_deleted_specification_sections_specification_areas - Added
get_managed_equipment_filter_options_environmentals - Added
get_managed_equipment_filter_options_injuries - Added
get_managed_equipment_filter_options_near_misses - Removed
get_managed_equipment_filter_options_project - Removed
get_managed_equipment_filter_options_project_v1_0 - Removed
get_managed_equipment_filter_options_project_v1_0_2 - Removed
get_managed_equipment_filter_options_project_v1_0_4 - Added
get_managed_equipment_filter_options_property_damages - Changed
get_project_naming_standard_rules2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Added
get_project_task_by_id - Changed
get_project_task_by_id_company3 fields changed- added
Input schema / properties / bid_board_project_idAdded value: +{ + "description": "URL path parameter — unique BidBoard project identifier", + "type": "string" +} - removed
Input schema / properties / project_idRemoved value: -{ - "description": "URL path parameter — unique project identifier", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "task_id", - "company_id", - "project_id" -]New value: +[ + "task_id", + "company_id", + "bid_board_project_id" +]
- Removed
get_project_task_by_id_company_v2_0 - Added
get_project_tasks - Changed
get_project_tasks_company3 fields changed- added
Input schema / properties / bid_board_project_idAdded value: +{ + "description": "URL path parameter — unique BidBoard project identifier", + "type": "string" +} - removed
Input schema / properties / project_idRemoved value: -{ - "description": "URL path parameter — unique project identifier", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "company_id", - "project_id" -]New value: +[ + "company_id", + "bid_board_project_id" +]
- Removed
get_project_tasks_company_v2_0 - Changed
get_project_workflowable_object_instance_histories2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
get_receipt_properties2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
get_resource_planning_notification_profiles2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Added
get_the_minutes_and_date_created_for_all_parent_topics - Removed
get_the_minutes_and_date_created_for_all_parent_topics_v1_0 - Added
get_unreviewed_uploads_for_specification_areas - Removed
get_unreviewed_uploads_for_specification_sections_for_a_2 - Changed
get_vendors_for_a_company1 field changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +}
- Added
get_work_activity_filter_options_environmentals - Added
get_work_activity_filter_options_injuries - Added
get_work_activity_filter_options_near_misses - Removed
get_work_activity_filter_options_project - Removed
get_work_activity_filter_options_project_v1_0 - Removed
get_work_activity_filter_options_project_v1_0_2 - Removed
get_work_activity_filter_options_project_v1_0_4 - Added
get_work_activity_filter_options_property_damages - Added
gets_details_of_a_specific_material_requirements_header - Removed
gets_details_of_a_specific_material_requirements_header_by_its - Changed
gets_properties_for_inter_project_transfers2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
gets_related_documents_for_receipts_by_dashboard_type1 field changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +}
- Changed
gets_related_documents_for_shipments_by_dashboard_type1 field changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +}
- Removed
it_fetches_a_budget_note - Added
list_accepted_weather_conditions_daily_logs - Removed
list_accepted_weather_conditions_project - Removed
list_accepted_weather_conditions_project_v1_0 - Added
list_accepted_weather_conditions_weather_logs - Removed
list_all_attachments_project - Added
list_all_attachments_project_v1_0 - Changed
list_all_connection_statuses_for_external_rfis_filter_options2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Added
list_app_installations_app_installations - Added
list_app_installations_installation_requests - Removed
list_app_installations_v1_0 - Removed
list_app_installations_v1_0_2 - Changed
list_asset_statuses_company2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_asset_statuses_project2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_asset_system_states2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_asset_types_company2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_asset_types_project2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_available_external_rfi_filter_options2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_available_fields_for_rule_configuration2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_available_fields_for_rule_configuration_project_scope2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_available_status_transitions2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_available_statuses_for_external_rfis_filter_options2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Removed
list_bids_within_a_project_company - Added
list_bids_within_a_project_v2_0 - Changed
list_budget_change_summaries2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_change_event_comments2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Added
list_change_event_statuses - Removed
list_change_event_statuses_v1_0 - Added
list_change_order_change_reasons - Removed
list_change_order_change_reasons_v1_0 - Changed
list_change_type_filter_options_company2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_change_type_filter_options_project2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Removed
list_checklist_list_closed_by_contact_filter_options_project - Added
list_checklist_list_closed_by_contact_filter_options_v2_0 - Removed
list_checklist_list_inspector_filter_options_project - Removed
list_checklist_list_inspector_filter_options_project_v1_0 - Added
list_checklist_list_inspector_filter_options_v1_0 - Added
list_checklist_list_inspector_filter_options_v2_0 - Removed
list_checklist_list_location_filter_options_project - Removed
list_checklist_list_location_filter_options_project_v1_0 - Added
list_checklist_list_location_filter_options_v1_0 - Added
list_checklist_list_location_filter_options_v2_0 - Removed
list_checklist_list_point_of_contact_filter_options_project - Removed
list_checklist_list_point_of_contact_filter_options_project_v1_0 - Added
list_checklist_list_point_of_contact_filter_options_v1_0 - Added
list_checklist_list_point_of_contact_filter_options_v2_0 - Removed
list_checklist_list_responsible_contractor_filter_options - Removed
list_checklist_list_responsible_contractor_filter_options_2 - Added
list_checklist_list_responsible_contractor_filter_options_v1_0 - Added
list_checklist_list_responsible_contractor_filter_options_v2_0 - Removed
list_checklist_list_specification_section_filter_options_project - Added
list_checklist_list_specification_section_filter_options_v2_0 - Removed
list_checklist_list_template_filter_options_project - Removed
list_checklist_list_template_filter_options_project_v1_0 - Added
list_checklist_list_template_filter_options_v1_0 - Added
list_checklist_list_template_filter_options_v2_0 - Removed
list_checklist_list_trade_filter_options_project - Removed
list_checklist_list_trade_filter_options_project_v1_0 - Added
list_checklist_list_trade_filter_options_v1_0 - Added
list_checklist_list_trade_filter_options_v2_0 - Added
list_company_users - Added
list_company_users_2 - Removed
list_company_users_v1_3 - Removed
list_company_users_v1_3_2 - Removed
list_counts_of_daily_logs_project - Removed
list_counts_of_daily_logs_project_v1_1 - Added
list_counts_of_daily_logs_v1_0 - Added
list_counts_of_daily_logs_v1_1 - Changed
list_current_revision_for_external_rfis_filter_options2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Added
list_custom_field_definitions - Removed
list_custom_field_definitions_v1_0 - Added
list_custom_field_lov_entries - Removed
list_custom_field_lov_entries_v1_0 - Added
list_custom_field_metadata - Removed
list_custom_field_metadata_v1_0 - Changed
list_default_correspondence_types2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_default_field_values_company2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_default_field_values_project2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_default_task_items_project_distribution_members2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_document_snapshots_for_a_coordination_issue_rest_v2_02 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Added
list_ecrion_xml_and_template_for_meetings - Removed
list_ecrion_xml_and_template_for_meetings_v1_0 - Changed
list_existing_sync_statuses_for_external_rfis_filter_options2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_field_rules_for_an_asset_type2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_field_rules_for_an_asset_type_project_scope2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_line_item_type_categories2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_lov_codes_for_a_field_company2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_lov_codes_for_a_field_project2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Added
list_meetings - Removed
list_meetings_v1_0 - Changed
list_of_document_revisions_company2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_of_document_revisions_project2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Added
list_prime_contract_line_items - Removed
list_prime_contract_line_items_v1_0 - Removed
list_project_configurable_field_sets_company - Added
list_project_configurable_field_sets_v2_1 - Removed
list_project_dates_company - Added
list_project_dates_v2_0 - Added
list_project_distribution_groups_distribution_groups - Removed
list_project_distribution_groups_v1_0 - Removed
list_project_distribution_groups_v1_0_2 - Added
list_project_distribution_groups_with_ancestors - Added
list_project_tools - Added
list_project_tools_2 - Removed
list_project_tools_v1_0 - Removed
list_project_tools_v1_0_2 - Added
list_recycled_action_plan_test_records - Removed
list_recyled_action_plan_test_records - Added
list_resources - Removed
list_resources_v1_0 - Removed
list_signatures_project - Removed
list_signatures_project_v1_0 - Added
list_signatures_time_and_material_entries - Added
list_signatures_timesheets - Changed
list_specification_configurations2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Added
list_specification_sections_for_a_project - Removed
list_specification_sections_for_a_project_company - Removed
list_specification_sections_for_a_project_company_v2_1 - Added
list_specification_sections_for_a_project_specification_areas - Added
list_specification_sections_revisions_for_a_project - Removed
list_specification_sections_revisions_for_a_project_company - Removed
list_specification_sections_revisions_for_a_project_company_v2_1 - Added
list_specification_sections_revisions_specification_areas - Added
list_submittal_responses - Removed
list_submittal_responses_v1_0 - Added
list_timecard_time_types - Removed
list_timecard_time_types_v1_0 - Changed
list_tools_enabled_for_workflows2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_user_filter_options_company2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_user_filter_options_project2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_user_permissions_company2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
list_user_permissions_project2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Removed
list_weather_logs_project - Removed
list_weather_logs_project_v1_0 - Added
list_weather_logs_v1_0 - Added
list_weather_logs_v1_1 - Changed
list_workflow_presets_company1 field changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +}
- Changed
list_workflow_presets_project1 field changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +}
- Added
make_tag_available_to_group - Removed
make_tag_from_being_available_to_group - Added
remove_tag_availability_to_group - Removed
remove_tag_availablility_to_group - Added
restore_equipment - Added
restore_property_damage - Added
restore_recycled_action - Added
restore_recycled_incident - Added
restore_recycled_injury - Added
restore_recycled_link - Added
restore_recycled_near_miss - Added
restore_recycled_observation - Added
restore_recycled_witness_statement - Added
retrieve_a_note_by_id_in_the_project - Changed
retrieve_a_note_by_id_in_the_project_company3 fields changed- added
Input schema / properties / bid_board_project_idAdded value: +{ + "description": "URL path parameter — unique BidBoard project identifier", + "type": "string" +} - removed
Input schema / properties / project_idRemoved value: -{ - "description": "URL path parameter — unique project identifier", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "note_id", - "company_id", - "project_id" -]New value: +[ + "note_id", + "company_id", + "bid_board_project_id" +]
- Removed
retrieve_a_note_by_id_in_the_project_company_v2_0 - Added
retrieve_a_project_proposal_by_id - Changed
retrieve_a_project_proposal_by_id_company3 fields changed- added
Input schema / properties / bid_board_project_idAdded value: +{ + "description": "URL path parameter — unique BidBoard project identifier", + "type": "string" +} - removed
Input schema / properties / project_idRemoved value: -{ - "description": "URL path parameter — unique project identifier", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "proposal_id", - "company_id", - "project_id" -]New value: +[ + "proposal_id", + "company_id", + "bid_board_project_id" +]
- Removed
retrieve_a_project_proposal_by_id_company_v2_0 - Added
retrieve_all_notes_in_the_project - Changed
retrieve_all_notes_in_the_project_company3 fields changed- added
Input schema / properties / bid_board_project_idAdded value: +{ + "description": "URL path parameter — unique BidBoard project identifier", + "type": "string" +} - removed
Input schema / properties / project_idRemoved value: -{ - "description": "URL path parameter — unique project identifier", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "company_id", - "project_id" -]New value: +[ + "company_id", + "bid_board_project_id" +]
- Removed
retrieve_all_notes_in_the_project_company_v2_0 - Added
retrieve_all_project_proposals - Changed
retrieve_all_project_proposals_company3 fields changed- added
Input schema / properties / bid_board_project_idAdded value: +{ + "description": "URL path parameter — unique BidBoard project identifier", + "type": "string" +} - removed
Input schema / properties / project_idRemoved value: -{ - "description": "URL path parameter — unique project identifier", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "company_id", - "project_id" -]New value: +[ + "company_id", + "bid_board_project_id" +]
- Removed
retrieve_all_project_proposals_company_v2_0 - Removed
retrieve_equipment - Removed
retrieve_property_damage - Removed
retrieve_recycled_action - Removed
retrieve_recycled_incident - Removed
retrieve_recycled_injury - Removed
retrieve_recycled_link - Removed
retrieve_recycled_near_miss - Removed
retrieve_recycled_observation - Removed
retrieve_recycled_witness_statement - Removed
retrieves_the_status_of_the_asyncronous_job_that_a_bulk_users - Changed
return_company_schedule_summary2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Changed
returns_a_paginated_list_of_labels_for_the_specified_company1 field changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +}
- Added
review_requested_changes - Removed
review_requested_changes_v1_0 - Added
send_a_response_from_a_generic_tool_item_and_then_update - Removed
send_a_response_from_a_generic_tool_item_and_then_update_the - Added
send_email_drawing_revision_emails - Removed
send_email_project - Removed
send_email_project_v1_0 - Added
send_email_specification_section_revision_emails - Removed
show_a_compliance_document_project - Removed
show_a_compliance_document_project_v1_0 - Added
show_a_compliance_document_purchase_order_contracts - Added
show_a_compliance_document_work_order_contracts - Removed
show_a_signature_project - Added
show_a_signature_project_time_and_material_entries - Added
show_a_signature_project_timesheets - Removed
show_a_signature_project_v1_0 - Changed
show_advanced_export_options_for_external_rfi2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Added
show_company_user - Added
show_company_user_2 - Removed
show_company_user_v1_3 - Removed
show_company_user_v1_3_2 - Removed
show_compliance_documents_for_a_contract_project - Removed
show_compliance_documents_for_a_contract_project_v1_0 - Added
show_compliance_documents_for_a_contract_work_order_contracts - Added
show_compliance_documents_purchase_order_contracts - Added
show_custom_field_definition - Removed
show_custom_field_definition_v1_0 - Added
show_custom_field_metadatum - Removed
show_custom_field_metadatum_v1_0 - Added
show_generic_tool_item - Removed
show_generic_tool_item_v1_0 - Added
show_meeting - Removed
show_meeting_v1_0 - Added
show_prime_contract - Added
show_prime_contract_line_item - Removed
show_prime_contract_line_item_v1_0 - Removed
show_prime_contract_v1_0 - Added
show_project_date - Added
show_project_date_2 - Removed
show_project_date_v1_0 - Removed
show_project_date_v1_0_2 - Added
show_project_distribution_group_distribution_groups - Removed
show_project_distribution_group_v1_0 - Removed
show_project_distribution_group_v1_0_2 - Added
show_project_distribution_groups_with_ancestors - Changed
show_requisition_subcontractor_invoice2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number for paginated results (default: 1, 1-indexed)", + "type": "number" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Number of items per page (default: 100, max: 100)", + "type": "number" +}
- Added
show_resource - Removed
show_resource_v1_0 - Added
show_specification_section_revision - Removed
show_specification_section_revision_v1_0 - Added
show_submittal - Removed
show_submittal_v1_0 - Added
toggle_checklist_section_not_applicable_status_patch - Added
toggle_checklist_section_not_applicable_status_put - Removed
toggle_checklist_section_not_applicable_status_v1_0 - Removed
toggle_checklist_section_not_applicable_status_v1_0_2 - Removed
update_a_compliance_document_project - Removed
update_a_compliance_document_project_v1_0 - Added
update_a_compliance_document_purchase_order_contracts - Added
update_a_compliance_document_work_order_contracts - Added
update_a_note_of_the_project - Changed
update_a_note_of_the_project_company3 fields changed- added
Input schema / properties / bid_board_project_idAdded value: +{ + "description": "URL path parameter — unique BidBoard project identifier", + "type": "string" +} - removed
Input schema / properties / project_idRemoved value: -{ - "description": "URL path parameter — unique project identifier", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "note_id", - "company_id", - "project_id", - "value" -]New value: +[ + "note_id", + "company_id", + "bid_board_project_id", + "value" +]
- Removed
update_a_note_of_the_project_company_v2_0 - Added
update_a_pdf_template_config - Removed
update_a_pdf_template_config_company - Removed
update_a_pdf_template_config_company_v1_0 - Added
update_a_pdf_template_config_update_default_project - Added
update_a_proposal_of_the_project - Changed
update_a_proposal_of_the_project_company3 fields changed- added
Input schema / properties / bid_board_project_idAdded value: +{ + "description": "URL path parameter — unique BidBoard project identifier", + "type": "string" +} - removed
Input schema / properties / project_idRemoved value: -{ - "description": "URL path parameter — unique project identifier", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "proposal_id", - "company_id", - "project_id" -]New value: +[ + "proposal_id", + "company_id", + "bid_board_project_id" +]
- Removed
update_a_proposal_of_the_project_company_v2_0 - Removed
update_drawing_discipline_project - Removed
update_drawing_discipline_project_v1_0 - Added
update_drawing_discipline_v1_0 - Added
update_drawing_discipline_v1_1 - Added
update_equipment_project - Added
update_equipment_project_bulk_update - Removed
update_equipment_project_company - Removed
update_equipment_project_company_v2_1 - Added
update_meeting - Added
update_meeting_topic - Removed
update_meeting_topic_v1_0 - Removed
update_meeting_v1_0 - Added
update_payment_application_owner_invoice_markup_line_item - Removed
update_payment_application_owner_invoice_markup_line_item_for - Added
update_prime_contract - Added
update_prime_contract_line_item - Removed
update_prime_contract_line_item_v1_0 - Removed
update_prime_contract_v1_0 - Added
update_project_task - Changed
update_project_task_company3 fields changed- added
Input schema / properties / bid_board_project_idAdded value: +{ + "description": "URL path parameter — unique BidBoard project identifier", + "type": "string" +} - removed
Input schema / properties / project_idRemoved value: -{ - "description": "URL path parameter — unique project identifier", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "task_id", - "company_id", - "project_id" -]New value: +[ + "task_id", + "company_id", + "bid_board_project_id" +]
- Removed
update_project_task_company_v2_0 - Added
update_resource - Removed
update_resource_v1_0 - Removed
update_timesheet_project - Removed
update_timesheet_project_v1_0 - Added
update_timesheet_v1_0 - Added
update_timesheet_v1_1 - Removed
update_weather_log_project - Removed
update_weather_log_project_v1_0 - Added
update_weather_log_v1_0 - Added
update_weather_log_v1_1 - Added
updates_an_existing_condition_for_a_specific_line_item - Removed
updates_an_existing_condition_for_a_specific_line_item_in_a - Added
upload_schedule_file_patch - Added
upload_schedule_file_put - Removed
upload_schedule_file_v1_0 - Removed
upload_schedule_file_v1_0_2
1455 tool updates
v1.2.0- Added
accessible_tools - Changed
add_additional_assignees_to_a_workflow_instance_company1 field changed- added
Input schema / properties / role_typeAdded value: +{ + "description": "JSON request body field — role applied to the additional assignees on the step. Defaults to responder when omitted.", + "enum": [ + "responder", + "commenter" + ], + "type": "string" +}
- Changed
add_additional_assignees_to_a_workflow_instance_project1 field changed- added
Input schema / properties / role_typeAdded value: +{ + "description": "JSON request body field — role applied to the additional assignees on the step. Defaults to responder when omitted.", + "enum": [ + "responder", + "commenter" + ], + "type": "string" +}
- Added
add_attachment_to_project_asset_type - Added
add_comments_to_a_direct_issue - Added
add_project_to_group - Added
add_up_to_100_comments_to_a_material - Added
add_up_to_100_comments_to_a_purchase_order - Added
add_up_to_100_comments_to_a_receipt - Added
add_up_to_100_comments_to_a_shipment - Added
add_up_to_100_comments_to_a_transfer - Added
add_up_to_100_comments_to_an_adjustment - Added
adds_a_line_item_to_an_inter_project_transfer - Added
adds_a_single_attachment_to_a_receipt_resource - Added
adds_a_single_line_item_to_a_draft_receipt - Added
adds_a_single_line_item_to_an_existing_transfer_document - Added
adds_attachment_s_to_a_direct_issue - Added
adds_attachments_to_a_defect_resource - Added
adds_attachments_to_a_material_requirements_resource - Added
adds_attachments_to_a_material_resource - Added
adds_attachments_to_a_purchase_order_resource - Added
adds_attachments_to_a_receipt_resource - Added
adds_attachments_to_a_shipment_resource - Added
adds_attachments_to_a_transfer - Added
adds_attachments_to_an_inter_project_transfer - Added
adds_bulk_line_items_to_a_shipment_from_a_purchase_order - Added
adds_comments_to_a_defect_resource - Added
adds_comments_to_a_material_requirements_resource - Added
adds_comments_to_an_inter_project_transfer - Added
adds_existing_labels_to_specified_resources - Added
adds_line_items_to_an_existing_direct_issue - Added
adds_multiple_line_items_to_a_draft_receipt_in_bulk - Added
adds_new_line_items_to_an_existing_adjustment_document - Added
adds_one_or_more_attachments_to_an_adjustment_document - Removed
approve_payments_beneficiary - Changed
batch_get_model_manager_viewpoints_by_uuid_rest_v2_0_issue1 field changed- added
Input schema / properties / viewpoint_formatAdded value: +{ + "description": "Query string parameter — specify the response format for viewpoint data.\nWhen `v1`, all viewpoints (including Model Manager-backed) are returned in legacy shape (`camera_data`, `sections_data`, `redlines_data` as JSON stri...", + "enum": [ + "v1", + "v2" + ], + "type": "string" +}
- Changed
bid_level_across_a_bid_form2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
bulk_create_action_plans_for_assets - Added
bulk_create_bid_forms - Added
bulk_create_document_revisions - Added
bulk_create_document_uploads - Added
bulk_create_field_rules - Added
bulk_create_field_rules_project_scope - Added
bulk_create_groups_in_a_layer - Changed
bulk_create_workflow_instances_company_public1 field changed- added
Input schema / properties / Idempotency-TokenAdded value: +{ + "description": "JSON request body field — unique idempotent token", + "type": "string" +}
- Changed
bulk_create_workflow_instances_project_public1 field changed- added
Input schema / properties / Idempotency-TokenAdded value: +{ + "description": "JSON request body field — unique idempotent token", + "type": "string" +}
- Added
bulk_delete_attachments_company - Added
bulk_delete_attachments_project - Added
bulk_delete_attachments_project_v2_0 - Removed
bulk_delete_payouts_by_invoice - Added
bulk_delete_specification_sections - Added
bulk_edit_specification_sections - Added
bulk_transition_defects_to_a_new_status - Changed
bulk_update_company_observation_templates2 fields changed- changed
Input schema / properties / observation_template_ids / descriptionPrevious value: -"Query string parameter — iDs of all Company Observation Templates specified for bulk update"New value: +"Query string parameter — iDs of the Company Observation Templates to update. Comma-separate to include several. Templates not owned by this Company are silently skipped." - changed
Input schema / properties / trade_id / descriptionPrevious value: -"JSON request body field — the ID of the Company Observation Template's Trade"New value: +"JSON request body field — iD of the Trade to set on every template in `observation_template_ids`. Must belong to this Company."
- Added
bulk_update_document_uploads - Added
bulk_update_field_rules - Added
bulk_update_field_rules_project_scope - Added
bulk_update_for_specification_sets_for_a_project - Changed
bulk_update_harm_sources1 field changed- changed
Input schema / properties / active / descriptionPrevious value: -"JSON request body field — flag that denotes if the Harm Sources are available for use"New value: +"JSON request body field — whether the specified harm sources should be active (available for selection) or inactive."
- Changed
bulk_update_hazards1 field changed- changed
Input schema / properties / active / descriptionPrevious value: -"JSON request body field — flag that denotes if the Hazards are available for use"New value: +"JSON request body field — whether the specified hazards should be active (available for selection) or inactive."
- Changed
bulk_update_project_observation_templates4 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"JSON request body field — flag that denotes if the Project Observation Template is available for use"New value: +"JSON request body field — whether the templates can be selected when creating a new Observation. Applied to every template in `observation_template_ids`." - changed
Input schema / properties / assignee_id / descriptionPrevious value: -"JSON request body field — the ID of the Project Observation Template's Assignee"New value: +"JSON request body field — user ID of a single default assignee to set on every template in `observation_template_ids`. Mutually exclusive with `assignee_ids`." - added
Input schema / properties / assignee_idsAdded value: +{ + "description": "JSON request body field — user IDs of the default assignees to set on every template in `observation_template_ids`, replacing their existing assignee lists. Mutually exclusive with `assignee_id`.", + "items": {}, + "type": "array" +} - changed
Input schema / properties / trade_id / descriptionPrevious value: -"JSON request body field — the ID of the Project Observation Template's Trade"New value: +"JSON request body field — iD of the Trade to set on every template in `observation_template_ids`."
- Added
bulk_update_specification_section_revisions - Added
bulk_updates_destination_for_multiple_line_items - Added
bulk_updates_line_items_on_a_single_shipment - Added
bulk_upsert_lov_codes_company - Added
bulk_upsert_lov_codes_project - Changed
calculate_number_of_inspections_to_create_based_on_schedule2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
calculate_when_the_first_inspection_of_an_inspection_schedule2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
change_history1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
change_history_of_specification_section_revision - Changed
check_company_zone3 fields changed- removed
Input schema / additionalPropertiesRemoved value: -false - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
check_csv_export_status_for_commitment_change_order_rows2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
check_csv_export_status_for_prime_change_order_rows2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
check_if_number_and_revision_entered_are_available_or_duplicated2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
check_pdf_generation_status_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
check_pdf_generation_status_project_v2_03 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - changed
Input schema / properties / prime_change_order_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Prime Change Order."New value: +"URL path parameter — unique identifier for the Prime Change Order. See `GET /rest/v1.0/projects/{project_id}/prime_change_orders`.\n"
- Changed
check_pdf_generation_status_project_v2_0_22 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
check_pdf_generation_status_project_v2_0_42 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
check_pdf_generation_status_project_v2_0_52 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
check_pdf_generation_status_project_v2_0_62 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
checklist_schedule_assignee_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
checklist_schedule_equipment_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
checklist_schedule_inspection_template_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
checklist_schedule_inspection_type_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
checklist_schedule_location_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
close_and_distribute_a_submittal_log4 fields changed- changed
Input schema / properties / prostore_file_ids / descriptionPrevious value: -"JSON request body field — array of prostore file identifiers"New value: +"JSON request body field — prostore File IDs to attach directly to the distribution (e.g., new files uploaded as part of the distribution message)." - changed
Input schema / properties / recipient_ids / descriptionPrevious value: -"JSON request body field — array of recipient identifiers"New value: +"JSON request body field — loginInformation IDs of users to be notified of the distribution. Available from `GET /rest/v1.0/projects/{project_id}/users`." - added
Input schema / properties / submittal_attachment_idsAdded value: +{ + "description": "JSON request body field — submittalAssociatedAttachment IDs to include in the distribution. IDs are resolved by `SubmittalAssociatedAttachment.id`. Available from `GET /rest/v1.0/projects/{project_id}/submittal_logs/{id}`.", + "items": {}, + "type": "array" +} - changed
Input schema / properties / submittal_log_status_id / descriptionPrevious value: -"JSON request body field — submittal_log_status_id"New value: +"JSON request body field — the ID of a Submittal Status (from `GET /rest/v1.0/companies/{company_id}/submittal_statuses`) whose `status` is `Closed`. The Submittal Log will be transitioned to this status as part of the call."
- Added
close_checklist_inspection - Added
company_markup_indicators_by_items - Added
complete_company_upload - Added
complete_unified_upload - Added
consolidates_inventory_of_a_material_from_multiple_locations - Changed
convert_private_layer_to_public2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Added
copy_markups - Changed
create_a_budget_view_snapshot4 fields changed- added
Input schema / properties / date_range_for_actualsAdded value: +{ + "description": "JSON request body field — filters actuals data to a specific date range when generating the snapshot.\nProvide exactly two dates in ISO 8601 format representing the start and end of the range.\n", + "items": {}, + "type": "array" +} - added
Input schema / properties / financial_period_idAdded value: +{ + "description": "JSON request body field — the ID of the Financial Period to associate with this snapshot.\nOnly available when the Financial Periods feature is enabled.\n", + "type": "number" +} - added
Input schema / properties / only_actuals_with_datesAdded value: +{ + "description": "JSON request body field — when true, only actuals records with a date within date_range_for_actuals are included.\nWhen false (default), actuals records with no date are also included alongside date-ranged results.\n", + "type": "boolean" +} - added
Input schema / properties / reassign_financial_periodAdded value: +{ + "description": "JSON request body field — only applies when snapshot_type is project_status_snapshot and financial_period_id is provided.\nWhen true, if the requested financial_period_id is already assigned to another snapshot in the\nsame p...", + "type": "boolean" +}
- Changed
create_a_coordination_issue_rest_v2_06 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"JSON request body field — company id for the new issue (typically matches path company)."New value: +"URL path parameter — unique identifier for the company." - added
Input schema / properties / is_privateAdded value: +{ + "description": "JSON request body field — when `true`, creates a **private** coordination issue (restricted visibility). Omitted keys leave the\ncolumn at its default (typically public).\n", + "type": "boolean" +} - changed
Input schema / properties / project_id / descriptionPrevious value: -"JSON request body field — path includes project; may be echoed in body (ignored for scoping)."New value: +"URL path parameter — unique identifier for the project." - added
Input schema / properties / statusAdded value: +{ + "description": "JSON request body field — initial status (e.g. `open`, `closed`, `in_progress`). `in_progress` is accepted only when\n`enable-ci-in-progress` is active for the project/company; otherwise the API coerces it to `open` before\nc...", + "type": "string" +} - added
Input schema / properties / watcher_idsAdded value: +{ + "description": "JSON request body field — user ids to add as watchers on the new coordination issue.", + "items": {}, + "type": "array" +} - changed
Input schema / requiredPrevious value: -[ - "title" -]New value: +[ + "company_id", + "project_id", + "title" +]
- Added
create_a_document_snapshot_on_a_coordination_issue_rest_v2_0 - Changed
create_a_manual_forecast_line_item1 field changed- added
Input schema / properties / asyncAdded value: +{ + "description": "JSON request body field — request asynchronous processing. When `true`, Budget Columns 2.0 must be enabled or the request will return `422`. On success returns `202 Accepted` with a `receipt_id`.", + "type": "boolean" +}
- Changed
create_a_model_manager_viewpoint_and_link_it_to_the_issue_rest1 field changed- changed
Input schema / properties / snapshot_upload_uuid / descriptionPrevious value: -"JSON request body field — accepted in the JSON body; **not** applied by MM create in this flow unless part of `payload`."New value: +"JSON request body field — upload UUID of a previously uploaded snapshot image (via `POST /rest/v1.0/projects/{project_id}/uploads`).\n**Legacy strategy:** the image is attached to the created `BimViewpoint` as a `ProstoreFil..."
- Changed
create_a_new_budgeted_production_quantity2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"JSON request body field — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier for the project." - added
Input schema / requiredAdded value: +[ + "project_id" +]
- Added
create_a_new_company_level_context - Changed
create_a_new_context3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / context_type / enumPrevious value: -[ - "document_revision", - "document_container" -]New value: +[ + "document_revision", + "document_container", + "FileVersion", + "folders_attachments", + "specification_section_revision", + "drawing_revision" +] - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Changed
create_a_new_group2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Changed
create_a_new_layer2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Changed
create_a_new_maintenance_record_company1 field changed- changed
Input schema / properties / equipment_id / descriptionPrevious value: -"JSON request body field — the id of the equipment."New value: +"URL path parameter — unique identifier of the equipment"
- Changed
create_a_new_maintenance_record_project1 field changed- changed
Input schema / properties / equipment_id / descriptionPrevious value: -"JSON request body field — the id of the equipment."New value: +"URL path parameter — unique identifier of the equipment"
- Changed
create_a_new_time_and_material_equipment_log1 field changed- added
Input schema / properties / idle_quantityAdded value: +{ + "description": "JSON request body field — idle Quantity of Time And Material Equipment Log", + "type": "number" +}
- Changed
create_a_note_in_the_project_company1 field changed- changed
Input schema / properties / value / descriptionPrevious value: -"JSON request body field — the value for this Estimating operation"New value: +"JSON request body field — the content of the note."
- Changed
create_a_note_in_the_project_company_v2_01 field changed- changed
Input schema / properties / value / descriptionPrevious value: -"JSON request body field — the value for this Bid Board operation"New value: +"JSON request body field — the content of the note."
- Added
create_a_specification_section - Added
create_a_specification_section_division - Changed
create_a_task_item_comment1 field changed- added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — serialization view for the created comment (default **normal**).", + "enum": [ + "compact", + "normal", + "extended" + ], + "type": "string" +}
- Changed
create_a_wbs_code1 field changed- added
Input schema / properties / default_uom_idAdded value: +{ + "description": "JSON request body field — iD of the Unit of Measure to set as the default for this WBS code. Pass null to remove the existing default. Part of the Units of Measure Validation beta.", + "type": "number" +}
- Removed
create_a_workflow_instance_company - Added
create_a_workflow_instance_company_public - Removed
create_a_workflow_instance_project - Added
create_a_workflow_instance_project_public - Changed
create_action8 fields changed- changed
Input schema / properties / action_type_id / descriptionPrevious value: -"JSON request body field — the ID of the Action Type"New value: +"JSON request body field — identifier of the action type to classify this action. Obtain valid IDs from GET /rest/v1.0/companies/{company_id}/incidents/action_types." - changed
Input schema / properties / description / descriptionPrevious value: -"JSON request body field — description of action taken in rich text form."New value: +"JSON request body field — description of action taken, in HTML rich-text format." - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"JSON request body field — drawing Revisions to attach to the response"New value: +"JSON request body field — array of drawing revision IDs to attach to this action." - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"JSON request body field — file Versions to attach to the response"New value: +"JSON request body field — array of file version IDs to attach to this action." - changed
Input schema / properties / form_ids / descriptionPrevious value: -"JSON request body field — forms to attach to the response"New value: +"JSON request body field — array of form IDs to attach to this action." - changed
Input schema / properties / image_ids / descriptionPrevious value: -"JSON request body field — images to attach to the response"New value: +"JSON request body field — array of image IDs to attach to this action." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"JSON request body field — the ID of the Incident"New value: +"JSON request body field — identifier of the incident to associate this action with. Required on create." - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"JSON request body field — uploads to attach to the response"New value: +"JSON request body field — array of upload identifiers (from the Uploads endpoint) to attach to this action."
- Changed
create_action_plan1 field changed- added
Input schema / properties / asset_idsAdded value: +{ + "description": "JSON request body field — asset IDs to be set on the Action Plan", + "items": {}, + "type": "array" +}
- Changed
create_affliction_type1 field changed- changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — the Name of the Affliction Type"New value: +"JSON request body field — display name for the affliction type. Required on create. Procore-provided (global) type names cannot be changed."
- Added
create_an_electronic_signature - Changed
create_an_estimate_line_item_in_the_proposal_company5 fields changed- added
Input schema / properties / cost_item / additionalPropertiesAdded value: +{} - changed
Input schema / properties / cost_item / descriptionPrevious value: -"JSON request body field — cost item associated with the line item. Provide custom pricing or omit to use a generic cost item based on type. When provided, the entire cost item is replaced (no partial updates)."New value: +"JSON request body field — cost item associated with the line item. Provide custom pricing or omit to use a generic cost item based on type. When provided, the entire cost item is replaced (no partial updates). At least one ..." - changed
Input schema / properties / cost_item / typePrevious value: -"string"New value: +"object" - added
Input schema / properties / quantityAdded value: +{ + "description": "JSON request body field — quantity from the estimating table (manual entry). Updated when using estimating or takeoff tab.", + "type": "number" +} - added
Input schema / properties / typeAdded value: +{ + "description": "JSON request body field — how the line item quantity is measured (count, linear, area, etc.). At least one of `type` or `cost_item.unit` must be provided; the other is inferred when omitted. If both are provided, they must ...", + "enum": [ + "UNKNOWN", + "COUNT", + "DESIGN", + "LINEAR", + "LINEAR_WITH_DROP", + "LINEAR_AVG_WITH_DROP", + "LINEAR_EACH", + "AREA", + "VERTICAL_AREA", + "NONE" + ], + "type": "string" +}
- Changed
create_an_estimate_line_item_in_the_proposal_project5 fields changed- added
Input schema / properties / cost_item / additionalPropertiesAdded value: +{} - changed
Input schema / properties / cost_item / descriptionPrevious value: -"JSON request body field — cost item associated with the line item. Provide custom pricing or omit to use a generic cost item based on type. When provided, the entire cost item is replaced (no partial updates)."New value: +"JSON request body field — cost item associated with the line item. Provide custom pricing or omit to use a generic cost item based on type. When provided, the entire cost item is replaced (no partial updates). At least one ..." - changed
Input schema / properties / cost_item / typePrevious value: -"string"New value: +"object" - added
Input schema / properties / quantityAdded value: +{ + "description": "JSON request body field — quantity from the estimating table (manual entry). Updated when using estimating or takeoff tab.", + "type": "number" +} - added
Input schema / properties / typeAdded value: +{ + "description": "JSON request body field — how the line item quantity is measured (count, linear, area, etc.). At least one of `type` or `cost_item.unit` must be provided; the other is inferred when omitted. If both are provided, they must ...", + "enum": [ + "UNKNOWN", + "COUNT", + "DESIGN", + "LINEAR", + "LINEAR_WITH_DROP", + "LINEAR_AVG_WITH_DROP", + "LINEAR_EACH", + "AREA", + "VERTICAL_AREA", + "NONE" + ], + "type": "string" +}
- Changed
create_an_project_equipment_log2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"JSON request body field — iD of the project the equipment was logged for"New value: +"URL path parameter — unique identifier for the project." - added
Input schema / requiredAdded value: +[ + "project_id" +]
- Changed
create_app_configuration1 field changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"JSON request body field — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier for the company."
- Removed
create_app_installation - Added
create_asset_company - Added
create_asset_project - Changed
create_attachment_project_v1_0_22 fields changed- changed
Input schema / properties / attachment / descriptionPrevious value: -"JSON request body field — incident Attachment.\nTo upload an attachment you must upload the entire payload as `multipart/form-data` content-type \nwith the `attachment` file.\n"New value: +"JSON request body field — binary file to upload as an incident attachment. Submit the entire request as multipart/form-data content type." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"URL path parameter — unique identifier of the incident"New value: +"URL path parameter — unique identifier of the incident to attach the file to. Use the id from the List or Show Incidents response."
- Changed
create_attachment_project_v1_0_51 field changed- changed
Input schema / properties / action_id / descriptionPrevious value: -"URL path parameter — unique identifier of the action"New value: +"URL path parameter — unique identifier of the incident action to attach a file to."
- Added
create_attachments_company - Added
create_attachments_project - Changed
create_bid_board_project1 field changed- added
Input schema / properties / office_idAdded value: +{ + "description": "JSON request body field — the unique identifier for the Procore office associated with the project. Use the Procore Company Offices endpoint to retrieve office IDs.", + "type": "string" +}
- Added
create_change_event_comment - Changed
create_checklist_item_attachment2 fields changed- added
Input schema / properties / document_management_document_revision_idAdded value: +{ + "description": "JSON request body field — pDM document revision ID to attach to the Checklist Item.", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "list_id", - "item_id", - "project_id", - "section_id", - "attachment" -]New value: +[ + "list_id", + "item_id", + "project_id", + "section_id" +]
- Changed
create_commitment_change_order4 fields changed- removed
Input schema / properties / drawing_revision_idsRemoved value: -{ - "description": "JSON request body field — drawing Revisions to attach to the response", - "items": {}, - "type": "array" -} - removed
Input schema / properties / file_version_idsRemoved value: -{ - "description": "JSON request body field — file Versions to attach to the response", - "items": {}, - "type": "array" -} - added
Input schema / properties / request_for_quote_attachment_idsAdded value: +{ + "description": "JSON request body field — list of attachment IDs to attach. These must presently be associated with Request For Quotes (or their Quotes / Responses).", + "items": {}, + "type": "array" +} - added
Input schema / properties / revised_substantial_completion_dateAdded value: +{ + "description": "JSON request body field — revised substantial completion date, only supported for Prime Change Orders on single-tier projects.", + "type": "string" +}
- Changed
create_commitment_change_order_batch1 field changed- added
Input schema / properties / request_for_quote_attachment_idsAdded value: +{ + "description": "JSON request body field — list of attachment IDs to attach. These must presently be associated with Request For Quotes (or their Quotes / Responses).", + "items": {}, + "type": "array" +}
- Changed
create_commitment_change_order_line_item2 fields changed- changed
Input schema / properties / commitment_line_item_id / descriptionPrevious value: -"JSON request body field — iD of the commitment contract line item associated with this line item"New value: +"JSON request body field — iD of the commitment contract line item associated with this line item. For ERP-integrated projects, pass the string \"new\" to create a new zero-dollar line item on the parent commitment contract an..." - added
Input schema / properties / funding_rule_idAdded value: +{ + "description": "JSON request body field — iD of the funding rule associated with this line item. Funding Sources must be enabled at the project level. The rule must be ACTIVE and its currency must match the contract currency. Pass null to ...", + "type": "string" +}
- Changed
create_commitment_contract_line_item1 field changed- added
Input schema / properties / funding_rule_idAdded value: +{ + "description": "JSON request body field — iD of the funding rule associated with this line item. Funding Sources must be enabled at the project level. The rule must be ACTIVE and its currency must match the contract currency. Pass null to ...", + "type": "string" +}
- Changed
create_company_currency_configuration5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — string ID of the Procore company for which to create the currency configuration. Obtainable from GET /rest/v1.0/companies (cast to string)." - changed
Input schema / properties / currency_display / descriptionPrevious value: -"JSON request body field — currency Display Options"New value: +"JSON request body field — how currency amounts should be rendered. 'symbol' renders with the locale currency glyph (e.g., $); 'code' renders with the ISO code (e.g., USD). Omit to leave unset." - changed
Input schema / properties / currency_iso_code / descriptionPrevious value: -"JSON request body field — the currency iso code for this Currency Configurations operation"New value: +"JSON request body field — iSO 4217 three-letter code for the company's base currency (e.g., 'USD', 'EUR', 'JPY'). Required. Determines the default currency for all company-level financial objects. Cannot be changed via the ..." - changed
Input schema / properties / multicurrency_enabled / descriptionPrevious value: -"JSON request body field — whether multicurrency is enabled for the company"New value: +"JSON request body field — whether to enable multicurrency for the company on creation. When true, projects under this company may be configured with their own currency and exchange rates; requires a signed multicurrency bet..." - changed
Input schema / requiredPrevious value: -[ - "company_id" -]New value: +[ + "company_id", + "currency_iso_code" +]
- Changed
create_company_exchange_rates3 fields changed- changed
Input schema / properties / base_currency_iso_code / descriptionPrevious value: -"JSON request body field — base Currency ISO Code"New value: +"JSON request body field — iSO 4217 three-letter code of the company's base currency (e.g., 'USD'). Required. Every rate in the `exchange_rates` array will be created against this base. Must match the company's existing curr..." - changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — integer ID of the Procore company whose exchange rates are being queried or modified. Obtainable from GET /rest/v1.0/companies." - changed
Input schema / properties / exchange_rates / descriptionPrevious value: -"JSON request body field — company exchange rates"New value: +"JSON request body field — array of new exchange rates to create. Each item must specify a unique `quote_currency_iso_code` (the currency pair must not already exist for this company)."
- Added
create_company_naming_standard_rule - Changed
create_company_segment_item1 field changed- added
Input schema / properties / default_uom_idAdded value: +{ + "description": "JSON request body field — iD of the Unit of Measure to set as the default for this Cost type (line item type) segment item. Pass null to remove the existing default. Part of the Units of Measure Validation beta.", + "type": "number" +}
- Changed
create_company_tag2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"JSON request body field — unique identifier for the company. NOTE - this is a Laborchart company ID."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / company_id / typePrevious value: -"number"New value: +"string"
- Removed
create_company_upload - Changed
create_compliance_document9 fields changed- added
Input schema / properties / allow_vendor_submissionAdded value: +{ + "description": "JSON request body field — whether vendors are allowed to submit files against this compliance document.", + "type": "boolean" +} - changed
Input schema / properties / document_type / descriptionPrevious value: -"JSON request body field — document type of the compliance document"New value: +"JSON request body field — category of compliance document. Valid values are constrained by the enum." - added
Input schema / properties / document_type / enumAdded value: +[ + "bond", + "project_insurance", + "license", + "master_agreement", + "permit", + "safety", + "w9", + "other", + "payroll", + "stored_material", + "closeout" +] - changed
Input schema / properties / effective_at / descriptionPrevious value: -"JSON request body field — effective date of the compliance document"New value: +"JSON request body field — date and time the document becomes effective, in ISO 8601 format." - changed
Input schema / properties / expires_at / descriptionPrevious value: -"JSON request body field — expiration date of the compliance document"New value: +"JSON request body field — date and time the document expires, in ISO 8601 format." - changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — name of the compliance document"New value: +"JSON request body field — display name of the compliance document." - added
Input schema / properties / notesAdded value: +{ + "description": "JSON request body field — general notes for the compliance document.", + "type": "string" +} - changed
Input schema / properties / prostore_file_ids / descriptionPrevious value: -"JSON request body field — array of Procore file IDs"New value: +"JSON request body field — iDs of Procore files to attach to the compliance document." - added
Input schema / properties / statusAdded value: +{ + "description": "JSON request body field — initial compliance status of the document. Valid values are constrained by the enum.", + "enum": [ + "not_submitted", + "review_pending", + "revise_and_resubmit", + "approved", + "not_compliant", + "in_review", + "revision_needed", + "compliant" + ], + "type": "string" +}
- Changed
create_configurable_field_sets15 fields changed- removed
Input schema / properties / action_plan_type_idRemoved value: -{ - "description": "JSON request body field — action Plan Type unique identifier", - "type": "number" -} - removed
Input schema / properties / categoryRemoved value: -{ - "description": "JSON request body field — required and only needed when associating projects for an Observations Configurable Field Set.(0 = quality, 1 = safety, 2 = commissioning, 3 = warranty, 4 = work to complete)", - "enum": [ - "quality", - "safety", - "commissioning", - "warranty", - "work_to_complete" - ], - "type": "string" -} - removed
Input schema / properties / class_nameRemoved value: -{ - "description": "JSON request body field — class Name of the object the Configurable Field Set is applied to", - "enum": [ - "Observations::Item", - "PunchItem", - "Rfi::Header" - ], - "type": "string" -} - removed
Input schema / properties / company_configurable_field_set_default_column_nameRemoved value: -{ - "description": "JSON request body field — the column name on CompanyConfigurableFieldSetDefault to set the Configurable Field Set as default to. Only needed if company_default is true.", - "enum": [ - "commissioning_configurable_field_set", - "quality_configurable_field_set", - "safety_configurable_field_set", - "warranty_configurable_field_set", - "work_to_complete_configurable_field_set", - "rfi_configurable_field_set" - ], - "type": "string" -} - removed
Input schema / properties / company_defaultRemoved value: -{ - "description": "JSON request body field — if the Configurable Field Set is the company default for new projects", - "type": "boolean" -} - changed
Input schema / properties / company_id / typePrevious value: -"number"New value: +"string" - added
Input schema / properties / configurable_field_setAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — configurable_field_set", + "type": "object" +} - added
Input schema / properties / custom_field_sectionsAdded value: +{ + "description": "JSON request body field — custom_field_sections", + "items": {}, + "type": "array" +} - removed
Input schema / properties / fieldsRemoved value: -{ - "additionalProperties": {}, - "description": "JSON request body field — all fields that make up the form of the class name.", - "type": "object" -} - removed
Input schema / properties / generic_tool_idRemoved value: -{ - "description": "JSON request body field — generic tool unique identifier", - "type": "number" -} - removed
Input schema / properties / include_lov_entriesRemoved value: -{ - "description": "Query string parameter — whether or not to include LOV entries in the response\n(defaults to true)", - "type": "boolean" -} - removed
Input schema / properties / inspection_type_idRemoved value: -{ - "description": "JSON request body field — inspection type unique identifier", - "type": "number" -} - removed
Input schema / properties / nameRemoved value: -{ - "description": "JSON request body field — the name for this Custom - Configurable Tools operation", - "type": "string" -} - removed
Input schema / properties / project_idsRemoved value: -{ - "description": "JSON request body field — array of project identifiers", - "items": {}, - "type": "array" -} - changed
Input schema / requiredPrevious value: -[ - "company_id", - "name", - "class_name", - "fields" -]New value: +[ + "company_id", + "configurable_field_set" +]
- Added
create_contract_compliance_document - Changed
create_contributing_behavior1 field changed- changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — the Name of the Contributing Behavior"New value: +"JSON request body field — display name for the contributing behavior. Must be unique within the company. Names of Procore-provided contributing behaviors cannot be changed."
- Changed
create_contributing_condition1 field changed- changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — the Name of the Contributing Condition"New value: +"JSON request body field — display name for the contributing condition. Must be unique within the company. Names of Procore-provided contributing conditions cannot be changed."
- Changed
create_cost_item1 field changed- changed
Input schema / properties / unit / descriptionPrevious value: -"JSON request body field — the unit of measurement for the cost item. (17 possible values)"New value: +"JSON request body field — the unit of measurement for the cost item. (18 possible values)"
- Added
create_custom_field_definitions - Added
create_custom_field_metadata - Changed
create_direct_cost_line_item5 fields changed- changed
Input schema / properties / amount / descriptionPrevious value: -"JSON request body field — the amount for this Direct Costs operation"New value: +"JSON request body field — the amount for this Project Level Direct Costs operation" - changed
Input schema / properties / description / descriptionPrevious value: -"JSON request body field — the description for this Direct Costs operation"New value: +"JSON request body field — the description for this Project Level Direct Costs operation" - changed
Input schema / properties / direct_cost_id / descriptionPrevious value: -"JSON request body field — unique identifier of the direct cost"New value: +"URL path parameter — unique identifier of the direct cost" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"JSON request body field — the origin data for this Direct Costs operation"New value: +"JSON request body field — the origin data for this Project Level Direct Costs operation" - changed
Input schema / requiredPrevious value: -[ - "project_id" -]New value: +[ + "project_id", + "direct_cost_id" +]
- Removed
create_early_pay_program - Changed
create_environmental6 fields changed- changed
Input schema / properties / affected_company_id / descriptionPrevious value: -"JSON request body field — the ID of the Affected Company"New value: +"JSON request body field — unique identifier of the vendor company affected by this environmental event." - changed
Input schema / properties / environmental_type_id / descriptionPrevious value: -"JSON request body field — the ID of the Environmental Type"New value: +"JSON request body field — unique identifier of the environmental type classifying this record. Retrieve valid IDs from GET /rest/v1.0/companies/{company_id}/incidents/environmental_types." - changed
Input schema / properties / estimated_cost_impact / descriptionPrevious value: -"JSON request body field — estimated cost impact of the record"New value: +"JSON request body field — estimated monetary cost impact of this environmental event." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"JSON request body field — the ID of the Incident"New value: +"JSON request body field — unique identifier of the incident to associate this environmental record with. Required on create." - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"JSON request body field — the ID of the Managed Equipment"New value: +"JSON request body field — unique identifier of the managed equipment involved in this environmental event." - changed
Input schema / properties / work_activity_id / descriptionPrevious value: -"JSON request body field — the ID of the Work Activity"New value: +"JSON request body field — unique identifier of the work activity during which this environmental event occurred."
- Changed
create_equipment_company1 field changed- added
Input schema / properties / purchase_orderAdded value: +{ + "description": "JSON request body field — the purchase order number.", + "type": "string" +}
- Changed
create_equipment_project1 field changed- added
Input schema / properties / purchase_orderAdded value: +{ + "description": "JSON request body field — the purchase order number.", + "type": "string" +}
- Added
create_field_rule - Added
create_field_rule_project_scope - Changed
create_group_and_move_markups3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project" - changed
Input schema / properties / viewer_doc_id / descriptionPrevious value: -"URL path parameter — unique identifier of the viewer doc"New value: +"URL path parameter — unique identifier of the viewer document"
- Changed
create_harm_source2 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"JSON request body field — flag that denotes if the Harm Source is available for use"New value: +"JSON request body field — flag that denotes if the Harm Source is available for use. Defaults to true on create." - changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — the Name of the Harm Source"New value: +"JSON request body field — display name of the harm source. Required on create. Must be unique within the company."
- Changed
create_hazard2 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"JSON request body field — flag that denotes if the Hazard is available for use"New value: +"JSON request body field — whether the hazard is available for selection when recording incidents. Defaults to true on create." - changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — the Name of the Hazard"New value: +"JSON request body field — display name of the hazard. Required on create. Must be unique within the company."
- Changed
create_incident_action_type1 field changed- changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — the Name of the Incident Action Type"New value: +"JSON request body field — display name for the incident action type. Required on create. Procore-provided (global) type names cannot be changed."
- Changed
create_meeting_project1 field changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"JSON request body field — the ID of the Project the Meetings belongs to"New value: +"URL path parameter — unique identifier for the project."
- Changed
create_observation_item_response_log1 field changed- changed
Input schema / properties / status / enumPrevious value: -[ - "initiated", - "ready_for_review", - "not_accepted", - "closed" -]New value: +[ + "initiated", + "ready_for_review", + "not_accepted", + "closed", + "draft" +]
- Added
create_or_update_incident_alert_recipient - Changed
create_pdf_export_for_a_prime_change_order1 field changed- changed
Input schema / properties / prime_change_order_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Prime Change Order."New value: +"URL path parameter — unique identifier for the Prime Change Order. See `GET /rest/v1.0/projects/{project_id}/prime_change_orders`.\n"
- Changed
create_permission_template2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"JSON request body field — the ID of the Company the Permission Template belongs to"New value: +"URL path parameter — unique identifier for the company." - added
Input schema / requiredAdded value: +[ + "company_id" +]
- Changed
create_prime_change_order4 fields changed- removed
Input schema / properties / drawing_revision_idsRemoved value: -{ - "description": "JSON request body field — drawing Revisions to attach to the response", - "items": {}, - "type": "array" -} - removed
Input schema / properties / file_version_idsRemoved value: -{ - "description": "JSON request body field — file Versions to attach to the response", - "items": {}, - "type": "array" -} - added
Input schema / properties / request_for_quote_attachment_idsAdded value: +{ + "description": "JSON request body field — list of attachment IDs to attach. These must presently be associated with Request For Quotes (or their Quotes / Responses).", + "items": {}, + "type": "array" +} - added
Input schema / properties / revised_substantial_completion_dateAdded value: +{ + "description": "JSON request body field — revised substantial completion date, only supported for Prime Change Orders on single-tier projects.", + "type": "string" +}
- Changed
create_prime_change_order_batch1 field changed- added
Input schema / properties / request_for_quote_attachment_idsAdded value: +{ + "description": "JSON request body field — list of attachment IDs to attach. These must presently be associated with Request For Quotes (or their Quotes / Responses).", + "items": {}, + "type": "array" +}
- Changed
create_prime_change_order_line_item3 fields changed- added
Input schema / properties / funding_rule_idAdded value: +{ + "description": "JSON request body field — iD of the funding rule associated with this line item. Funding Sources must be enabled at the project level. The rule must be ACTIVE and its currency must match the contract currency. Pass null to ...", + "type": "string" +} - changed
Input schema / properties / prime_change_order_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Prime Change Order."New value: +"URL path parameter — unique identifier for the Prime Change Order. See `GET /rest/v1.0/projects/{project_id}/prime_change_orders`.\n" - added
Input schema / properties / prime_line_item_idAdded value: +{ + "description": "JSON request body field — iD of the prime contract line item associated with this line item", + "type": "string" +}
- Changed
create_prime_contract_line_item_project1 field changed- added
Input schema / properties / funding_rule_idAdded value: +{ + "description": "JSON request body field — iD of the funding rule associated with this line item. Funding Sources must be enabled at the project level. The rule must be ACTIVE and its currency must match the contract currency. Pass null to ...", + "type": "string" +}
- Changed
create_prime_contract_line_item_v1_01 field changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"JSON request body field — unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
create_prime_contract_project2 fields changed- removed
Input schema / properties / contract_start_dateRemoved value: -{ - "description": "JSON request body field — only applicable to Work Order Contracts.", - "type": "string" -} - added
Input schema / properties / signature_requiredAdded value: +{ + "description": "JSON request body field — if true, a signature is required to execute the contract; otherwise no signature is required.\n", + "type": "boolean" +}
- Changed
create_project_currency_configuration6 fields changed- changed
Input schema / properties / company_currency_exchange_rate_override / descriptionPrevious value: -"JSON request body field — override for the Company Currency Exchange Rate"New value: +"JSON request body field — optional decimal override (sent as a string for precision). When set, overrides the company-level exchange rate when converting between this project's currency and the company base currency. Omit t..." - changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — integer ID of the Procore company that owns the project. Obtainable from GET /rest/v1.0/companies." - changed
Input schema / properties / currency_display / descriptionPrevious value: -"JSON request body field — currency Display Options"New value: +"JSON request body field — controls how currency amounts are formatted in responses and rendered to end users. 'symbol' uses the locale currency glyph (e.g., $); 'code' uses the ISO code (e.g., USD). Defaults to 'symbol'." - changed
Input schema / properties / currency_iso_code / descriptionPrevious value: -"JSON request body field — the currency iso code for this Currency Configurations operation"New value: +"JSON request body field — iSO 4217 three-letter code for the project's currency (e.g., 'EUR'). Required.\nMay differ from the company base currency when company-level multicurrency is enabled.\nCheck `currency_iso_code_eligib..." - changed
Input schema / properties / multicurrency_enabled / descriptionPrevious value: -"JSON request body field — whether to apply currencies to the project's financial objects."New value: +"JSON request body field — whether to apply project-level currency settings to this project's financial objects. Defaults to false. Requires the parent company to also have multicurrency enabled; otherwise the API returns 400." - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"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."
- Changed
create_project_exchange_rates4 fields changed- changed
Input schema / properties / base_currency_iso_code / descriptionPrevious value: -"JSON request body field — base Currency ISO Code"New value: +"JSON request body field — iSO 4217 three-letter code of the project base currency (e.g., 'USD'). Required. Every rate in the `exchange_rates` array will be created against this base. Must match the project's existing `curre..." - changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — integer ID of the Procore company that owns the project. Obtainable from GET /rest/v1.0/companies." - changed
Input schema / properties / exchange_rates / descriptionPrevious value: -"JSON request body field — project exchange rates"New value: +"JSON request body field — array of new exchange rates to create. Each item must specify a unique `quote_currency_iso_code` (the currency pair must not already exist for this project)." - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"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."
- Changed
create_project_inspection_template_item_reference1 field changed- changed
Input schema / properties / type / enumPrevious value: -[ - "attachment", - "document", - "drawing", - "form", - "image" -]New value: +[ + "attachment", + "document", + "document_management_document_revision", + "drawing", + "form", + "image" +]
- Added
create_project_naming_standard_rule - Changed
create_project_observation_type5 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"JSON request body field — active or no."New value: +"JSON request body field — whether the type can be selected on new Observations. Defaults to active." - changed
Input schema / properties / category / descriptionPrevious value: -"JSON request body field — category to be used for Observations created from this type."New value: +"JSON request body field — legacy category key. Prefer `observations_category_id`, which references a Company-managed Observations Category." - changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — name to be used for Observations created from this type."New value: +"JSON request body field — display name of the Observation Type, shown in the type picker when creating an Observation." - changed
Input schema / properties / observations_category_id / descriptionPrevious value: -"JSON request body field — observations category id to be used for Observations created from this type."New value: +"JSON request body field — iD of the Observations Category to file this type under. Determines which Configurable Field Set applies to Observations of this type. See `GET /rest/v2.0/companies/{company_id}/observations/catego..." - changed
Input schema / properties / parent_id / descriptionPrevious value: -"JSON request body field — unique identifier of the parent"New value: +"JSON request body field — iD of the Company Observation Type this project type is derived from. Leave unset to create a standalone project-level type."
- Changed
create_requisition_subcontractor_invoices_for_commitment2 fields changed- changed
Input schema / properties / view / descriptionPrevious value: -"Query string parameter — specifies which view (which attributes) of the resource is going to be present in the response."New value: +"Query string parameter — specifies which view (which attributes) of the resource is going to be present in the response. The `header_only` view is intended for split header / line-items rendering on the Subcontractor Invoi..." - changed
Input schema / properties / view / enumPrevious value: -[ - "default", - "extended", - "items", - "action_policy" -]New value: +[ + "default", + "extended", + "items", + "action_policy", + "header_only" +]
- Changed
create_resource_project1 field changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"JSON request body field — the ID of the Project the Resource belongs to"New value: +"URL path parameter — unique identifier for the project."
- Changed
create_submittal1 field changed- changed
Input schema / properties / responsible_contractor_id / descriptionPrevious value: -"JSON request body field — the Responsible Contractor of the Submittal"New value: +"JSON request body field — the Responsible Contractor of the Submittal\n*This field is required when received_from_id is present and the field is visible in the project's field configuration"
- Added
create_submittals_from_specs - Changed
create_task_item1 field changed- added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — serialization view for the created task item in the response. Defaults to **`extended`** when omitted.\n", + "enum": [ + "compact", + "normal", + "extended" + ], + "type": "string" +}
- Changed
create_timecard_entry_project_21 field changed- added
Input schema / properties / serializer_viewAdded value: +{ + "description": "Query string parameter — changes which fields are included in the serialized response.\n- `extended_daily_log` - Returns extended fields plus Daily Log segment associations\n- Default (not specified) - Returns the standard e...", + "enum": [ + "extended_daily_log" + ], + "type": "string" +}
- Added
create_unified_company_upload - Added
create_unified_upload - Changed
create_unit_of_measure2 fields changed- changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — name of the Unit of Measure"New value: +"JSON request body field — display name of the Unit of Measure (e.g., `hours`). Must be unique within the company and cannot match a Procore-provided standard UOM name." - changed
Input schema / properties / uom_category_id / descriptionPrevious value: -"JSON request body field — iD of the Unit of Measure Category"New value: +"JSON request body field — iD of the parent UOM Category from `GET /rest/v1.0/companies/{company_id}/uom_categories`."
- Changed
create_workflow_activity_history1 field changed- changed
Input schema / properties / workflow_instance_id / descriptionPrevious value: -"JSON request body field — workflow Instance ID"New value: +"Query string parameter — workflow Instance ID"
- Added
create_workflow_bulk_replace_request - Added
creates_a_container_from_shipment_line_items - Added
creates_a_new_adjustment_document - Added
creates_a_new_condition_for_a_specific_line_item_in_a_receipt - Added
creates_a_new_direct_issue_document - Added
creates_a_new_inter_project_transfer - Added
creates_a_new_receipt - Added
creates_a_new_shipment - Added
creates_a_new_stand_alone_transfer - Added
creates_new_labels_in_the_specified_company_and_project - Removed
deactivate_early_pay_program - Changed
delete_a_budgeted_production_quantity2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"JSON request body field — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / requiredPrevious value: -[ - "id" -]New value: +[ + "project_id", + "id" +]
- Added
delete_a_document_snapshot_from_a_coordination_issue_rest_v2_0 - Added
delete_a_lov_code_company - Added
delete_a_lov_code_project - Changed
delete_a_manual_forecast_line_item1 field changed- added
Input schema / properties / asyncAdded value: +{ + "description": "JSON request body field — request asynchronous processing. When `true`, Budget Columns 2.0 must be enabled or the request will return `422`. On success returns `202 Accepted` with a `receipt_id`.", + "type": "boolean" +}
- Changed
delete_affliction_type1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the affliction type."
- Added
delete_an_attachment_for_a_project_asset_type - Added
delete_asset_company - Added
delete_asset_project - Removed
delete_attachment - Added
delete_attachment_company - Added
delete_attachment_project - Added
delete_change_event_comment - Changed
delete_company_currency_configuration1 field changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — integer ID of the Procore company. Obtainable from GET /rest/v1.0/companies. Identifies which company's currency configuration to act on."
- Added
delete_company_level_context_by_id - Added
delete_company_naming_standard_rule - Changed
delete_configurable_field_set2 fields changed- changed
Input schema / properties / company_id / typePrevious value: -"number"New value: +"string" - changed
Input schema / properties / id / typePrevious value: -"number"New value: +"string"
- Changed
delete_context_by_id3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project" - changed
Input schema / properties / skip_resource_deletion / descriptionPrevious value: -"Query string parameter — skip_resource_deletion"New value: +"Query string parameter — when true, skip deletion of associated resources (markups)"
- Changed
delete_context_by_query_parameters7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / context_type / descriptionPrevious value: -"Query string parameter — the context type for this Document Markup operation"New value: +"Query string parameter — context type to filter by" - changed
Input schema / properties / context_type_id / descriptionPrevious value: -"Query string parameter — unique identifier of the context type"New value: +"Query string parameter — context type ID to filter by" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project" - changed
Input schema / properties / skip_resource_deletion / descriptionPrevious value: -"Query string parameter — skip_resource_deletion"New value: +"Query string parameter — when true, skip deletion of associated resources (markups)" - changed
Input schema / properties / sub_context_type / descriptionPrevious value: -"Query string parameter — the sub context type for this Document Markup operation"New value: +"Query string parameter — sub-context type to filter by" - changed
Input schema / properties / sub_context_type_id / descriptionPrevious value: -"Query string parameter — unique identifier of the sub context type"New value: +"Query string parameter — sub-context type ID to filter by"
- Added
delete_contract_compliance_document - Changed
delete_contributing_behavior1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — contributing Behavior ID"New value: +"URL path parameter — unique identifier of the contributing behavior. Returned as id in List and Show responses."
- Changed
delete_contributing_condition1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — contributing Condition ID"New value: +"URL path parameter — unique identifier of the contributing condition. Returned as id in List and Show responses."
- Added
delete_custom_field_definition - Changed
delete_direct_cost_item1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Direct Costs resource"New value: +"URL path parameter — unique identifier of the Project Level Direct Costs resource"
- Added
delete_field_rule - Added
delete_field_rule_project_scope - Changed
delete_group3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / delete_resources / descriptionPrevious value: -"Query string parameter — the delete resources for this Document Markup operation"New value: +"Query string parameter — when true, also delete associated resources (markups)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Changed
delete_harm_source1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the harm source. Use the id from the List Harm Sources response."
- Changed
delete_hazard1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the hazard. Use the id from the List Hazards response."
- Changed
delete_incident1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the incident. Use the `id` from the List or Create Incidents response."
- Changed
delete_incident_action_type1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — incident Action Type ID"New value: +"URL path parameter — unique identifier of the incident action type."
- Changed
delete_incident_alert_recipient1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — incident Alert Recipient's User ID"New value: +"URL path parameter — user ID of the incident alert recipient."
- Changed
delete_layer2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Changed
delete_markups3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project" - changed
Input schema / properties / viewer_doc_id / descriptionPrevious value: -"URL path parameter — unique identifier of the viewer doc"New value: +"URL path parameter — unique identifier of the viewer document"
- Removed
delete_payout - Changed
delete_prime_change_order_line_item1 field changed- changed
Input schema / properties / prime_change_order_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Prime Change Order."New value: +"URL path parameter — unique identifier for the Prime Change Order. See `GET /rest/v1.0/projects/{project_id}/prime_change_orders`.\n"
- Changed
delete_project_currency_configuration2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — integer ID of the Procore company that owns the project. Obtainable from GET /rest/v1.0/companies." - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"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."
- Added
delete_project_naming_standard_rule - Changed
delete_project_observation_type1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — project Observation Type ID"New value: +"URL path parameter — iD of the Project Observation Type, as returned in `id` by the list endpoint."
- Added
delete_specification_area_transfer - Added
delete_specification_upload - Changed
delete_stamp3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — the unique identifier of the company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — the unique identifier of the project"New value: +"URL path parameter — unique identifier of the project" - changed
Input schema / properties / stamp_id / descriptionPrevious value: -"URL path parameter — the unique identifier of the stamp to delete"New value: +"URL path parameter — unique identifier of the stamp to delete"
- Added
deletes_a_condition_from_a_receipt_line_item_and_adjusts_line - Added
deletes_a_line_item_from_a_direct_issue_document - Added
deletes_a_line_item_from_a_draft_shipment - Added
deletes_a_line_item_from_a_draft_transfer - Added
deletes_a_line_item_from_an_inter_project_transfer - Added
deletes_a_material_requirement_line_item - Added
deletes_a_purchase_order_and_optionally_its_resources - Added
deletes_a_receipt_line_item - Added
deletes_an_adjustment_line_item_from_an_adjustment_document - Added
deletes_attachment_s_from_a_direct_issue - Added
deletes_attachment_s_from_an_adjustment_resource - Added
deletes_attachments_from_a_defect_resource - Added
deletes_attachments_from_a_material_requirements_resource - Added
deletes_attachments_from_a_material_resource - Added
deletes_attachments_from_a_purchase_order_resource - Added
deletes_attachments_from_a_receipt_resource - Added
deletes_attachments_from_a_shipment_resource - Added
deletes_attachments_from_a_transfer - Added
deletes_attachments_from_an_inter_project_transfer - Changed
destroy_action1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the incident action."
- Changed
destroy_environmental1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the environmental record. Returned as id in List and Show responses."
- Changed
destroy_property_damage1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the property damage record. Use the `id` from the List or Create Property Damages response."
- Added
destroy_specification_section_revision - Changed
destroy_task_item1 field changed- added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — serialization view for the task item. When omitted, defaults to **`extended`** for this API version.\n\n- **`compact`** — `id` and `title` only.\n- **`normal`** — standard shape without extended-only ...", + "enum": [ + "compact", + "normal", + "extended" + ], + "type": "string" +}
- Removed
disable_payments - Changed
document_markup_permissions4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Changed
download_all_company_level_email_attachments2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
download_all_email_attachments2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
download_all_generic_tool_item_attachments - Added
download_all_response_attachments - Added
download_bulk_replace_request_errors_csv - Changed
download_coordination_issues3 fields changed- added
Input schema / properties / filters__created_by_company_id__Added value: +{ + "description": "Query string parameter — filter item(s) with matching created by vendor companies.", + "items": {}, + "type": "array" +} - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
download_external_rfi_and_responses_attachments - Added
download_external_rfi_pdf_export - Added
download_log_of_specification_section_revision - Changed
download_rfis_list3 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - added
Input schema / properties / table_configuration_for_exportAdded value: +{ + "additionalProperties": {}, + "description": "Query string parameter — table configuration for the export that controls which columns are visible and their order in the generated PDF or CSV.\n\nWhen provided, the export will respect both the column visibility settings a...", + "type": "object" +}
- Changed
download_schedule_file2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
download_single_pdf_of_specification_section_revisions - Added
download_specification_section_revision - Added
download_zip_of_specification_section_revisions - Removed
enable_payments - Changed
export_company_level_email_communication2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
export_email_communication_to_pdf2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
export_forms_with_bids - Changed
fetch_active_support_pin2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
fetch_attachment_by_id_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
fetch_attachment_by_id_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
find_configurable_field_set_by_index3 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - added
Input schema / properties / scope__incident_type_idAdded value: +{ + "description": "Query string parameter — required for an Incident Configurable Field Set. If a value is provided, only field set of the specific Incident type is returned.", + "type": "number" +}
- Added
find_or_create_an_annotated_document - Removed
find_or_create_an_annotated_document_with_markup_context - Changed
generates_pdf_document2 fields changed- removed
Input schema / properties / filters__idRemoved value: -{ - "description": "Query string parameter — returns users whose id attribute matches the parameter.", - "type": "number" -} - added
Input schema / properties / filters__id__Added value: +{ + "description": "Query string parameter — returns users whose id attribute matches the parameter.", + "items": {}, + "type": "array" +}
- Changed
get_a_list_of_possible_timesheet_creator_ids1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_a_single_group2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_a_single_job_title2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_a_single_person2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_a_single_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_a_single_resource_planning_tag2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_a_workflow_instance_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_a_workflow_instance_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_a_workflow_template_version2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_accessible_groups_for_authenticated_user_by_context7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / context_type / descriptionPrevious value: -"URL path parameter — the context type for this Document Markup operation"New value: +"URL path parameter — context type (e.g. document_revision)" - changed
Input schema / properties / context_type_id / descriptionPrevious value: -"URL path parameter — unique identifier of the context type"New value: +"URL path parameter — context type identifier" - changed
Input schema / properties / layer_id / descriptionPrevious value: -"Query string parameter — unique identifier of the layer"New value: +"Query string parameter — optional layer ID to filter groups by" - changed
Input schema / properties / page / descriptionPrevious value: -"Query string parameter — page number for paginated results (default: 1)"New value: +"Query string parameter — page number for pagination (1-based)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Query string parameter — number of items per page (default: 100, max: 100)"New value: +"Query string parameter — number of items per page (max 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Changed
get_accessible_layers_for_authenticated_user_by_context6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / context_type / descriptionPrevious value: -"URL path parameter — the context type for this Document Markup operation"New value: +"URL path parameter — context type (e.g. document_revision)" - changed
Input schema / properties / context_type_id / descriptionPrevious value: -"URL path parameter — unique identifier of the context type"New value: +"URL path parameter — context type identifier" - changed
Input schema / properties / page / descriptionPrevious value: -"Query string parameter — page number for paginated results (default: 1)"New value: +"Query string parameter — page number for pagination (1-based)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Query string parameter — number of items per page (default: 100, max: 100)"New value: +"Query string parameter — number of items per page (max 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Changed
get_active_reinspection2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_activity_by_id2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_activity_link_by_id2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_affected_body_part_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_affected_body_parts1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_affected_company_filter_options_project1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_affected_company_filter_options_project_v1_01 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_affected_company_filter_options_project_v1_0_21 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_affected_company_filter_options_project_v1_0_41 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_affected_parties_filter_options_project1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_affected_parties_filter_options_project_v1_01 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_affected_persons_filter_options_project1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_affected_persons_filter_options_project_v1_01 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_affliction_type_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_all_attachments_for_equipment_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_all_attachments_for_equipment_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_all_company_groups1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
get_all_configurable_columns_for_adjustments - Added
get_all_configurable_columns_for_defects - Added
get_all_configurable_columns_for_materials - Added
get_all_configurable_columns_project - Added
get_all_configurable_columns_project_v2_0 - Added
get_all_configurable_columns_project_v2_0_2 - Added
get_all_configurable_columns_project_v2_0_4 - Changed
get_all_custom_fields1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
get_all_defect_line_items - Added
get_all_defects - Changed
get_all_equipment_company2 fields changed- added
Input schema / properties / filters__exclude_equipment_in_project_idsAdded value: +{ + "description": "Query string parameter — exclude equipment associated with these project ids", + "type": "string" +} - added
Input schema / properties / filters__identification_numbersAdded value: +{ + "description": "Query string parameter — filter identification_numbers", + "type": "string" +}
- Added
get_all_estimating_projects - Changed
get_all_job_titles_belonging_to_a_group1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_all_job_titles_in_the_company1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
get_all_line_items_for_a_specific_purchase_order - Added
get_all_line_items_for_a_specific_shipment - Added
get_all_materials - Added
get_all_properties_for_a_resource_company - Added
get_all_properties_for_a_resource_project - Added
get_all_properties_for_a_resource_project_v2_0 - Added
get_all_properties_for_a_resource_project_v2_0_10 - Added
get_all_properties_for_a_resource_project_v2_0_11 - Added
get_all_properties_for_a_resource_project_v2_0_2 - Added
get_all_properties_for_a_resource_project_v2_0_4 - Added
get_all_properties_for_a_resource_project_v2_0_6 - Added
get_all_properties_for_a_resource_project_v2_0_7 - Added
get_all_properties_for_a_resource_project_v2_0_8 - Added
get_all_properties_for_a_resource_project_v2_0_9 - Added
get_all_properties_for_adjustments - Added
get_all_properties_for_defects - Added
get_all_properties_for_issuing - Added
get_all_properties_for_materials - Added
get_all_properties_project - Added
get_all_properties_project_v2_0 - Added
get_all_properties_project_v2_0_2 - Added
get_all_properties_project_v2_0_4 - Added
get_all_purchase_order_line_items - Added
get_all_purchase_orders - Changed
get_all_resource_planning_tag_for_a_company1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_all_resource_planning_tag_for_a_group1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_all_resource_requests_for_a_single_project1 field changed- removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_all_resource_requests_for_projects_in_a_single_group1 field changed- removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_all_resource_requests_in_a_company1 field changed- removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
get_all_shipment_line_items - Added
get_all_shipments - Changed
get_all_time_off_for_a_single_person2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
get_asset_naming_fields_company - Added
get_asset_naming_fields_project - Changed
get_assignee_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
get_attachment_for_project_asset_type - Changed
get_bid_board_project_by_id2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_bid_board_project_custom_fields2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
get_bulk_company_workflowable_object_instance_histories - Added
get_bulk_project_workflowable_object_instance_histories - Removed
get_calendar_by_id - Added
get_calendar_by_id_v2_1 - Changed
get_change_event_settings2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
get_change_history_for_a_direct_issuing - Added
get_change_history_for_a_material - Added
get_change_history_for_a_purchase_order - Added
get_change_history_for_a_shipment - Added
get_change_history_for_a_transfer - Added
get_change_history_for_an_adjustment - Added
get_client_configuration_for_specification_sections - Changed
get_company_currency_configuration3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — integer ID of the Procore company. Obtainable from GET /rest/v1.0/companies. Identifies which company's currency configuration to act on." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_company_exchange_rates3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — integer ID of the Procore company whose exchange rates are being queried or modified. Obtainable from GET /rest/v1.0/companies." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
get_company_level_context_by_id - Added
get_company_level_contexts - Added
get_company_level_groups - Added
get_company_level_layer_structure - Added
get_company_level_layers - Added
get_company_naming_standard_rules - Added
get_company_part_upload_url - Changed
get_company_snapshots_summary5 fields changed- added
Input schema / properties / comparison_financial_period_idAdded value: +{ + "description": "Query string parameter — iD of the financial period to use as the comparison baseline. When omitted, no comparison data is returned.", + "type": "string" +} - added
Input schema / properties / filters__financial_period_id__Added value: +{ + "description": "Query string parameter — filter snapshots by financial period ID. Accepts one or more IDs. Pass the token `null` (or `nil`) as a value to match snapshots that have no financial period. Tokens and IDs can be combined — e.g....", + "items": {}, + "type": "array" +} - added
Input schema / properties / filters__project_number__Added value: +{ + "description": "Query string parameter — filter snapshots by one or more project numbers", + "items": {}, + "type": "array" +} - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
get_company_upload_status - Added
get_company_workflowable_object_instance_histories - Added
get_complete_layer_structure - Removed
get_complete_layer_structure_by_context_type_and_type_id - Changed
get_configuration_for_uom_master_list2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_context_by_id4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Changed
get_contexts10 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / filters__context_type_id / descriptionPrevious value: -"Query string parameter — filters[context_type_id]"New value: +"Query string parameter — context type ID to filter by" - changed
Input schema / properties / filters__created_before / descriptionPrevious value: -"Query string parameter — filters[created_before]"New value: +"Query string parameter — filter contexts created before this ISO date-time" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Query string parameter — filter results by id"New value: +"Query string parameter — jSON array of context IDs to filter by" - changed
Input schema / properties / filters__subcontext_type_id / descriptionPrevious value: -"Query string parameter — filters[subcontext_type_id]"New value: +"Query string parameter — sub-context type ID to filter by" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Query string parameter — filter results by updated at"New value: +"Query string parameter — filter by updated_at range in ISO format (start...end)" - changed
Input schema / properties / page / descriptionPrevious value: -"Query string parameter — page number for paginated results (default: 1)"New value: +"Query string parameter — page number for pagination (1-based)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Query string parameter — number of items per page (default: 100, max: 100)"New value: +"Query string parameter — number of items per page (max 5000 for ids_only)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project" - removed
Input schema / properties / viewRemoved value: -{ - "description": "Query string parameter — response detail level. Use 'normal' for standard fields or 'extended' for all fields", - "type": "string" -}
- Added
get_contract_compliance_document - Changed
get_contracts_invoice_configuration2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_contributing_behavior_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_contributing_condition_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_cost_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_custom_field_data_types2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_daily_log_headers_for_the_project2 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"Query string parameter — the right boundary of requested date range"New value: +"Query string parameter — the right (latest) boundary of the requested date range, inclusive, matched against each header's `log_date`. Defaults to today when omitted and is always capped at today, so a future `end_date` re..." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Query string parameter — the left boundary of requested date range"New value: +"Query string parameter — the left (earliest) boundary of the requested date range, inclusive, matched against each header's `log_date`. Defaults to the project's creation date when omitted. Supply a `start_date` earlier th..."
- Added
get_defect_by_id - Added
get_defect_header_by_id - Added
get_defect_line_items_by_defect_id - Added
get_details_of_a_single_attachment_for_a_defect_resource - Added
get_details_of_an_attachment_for_a_direct_issue - Added
get_details_of_an_attachment_for_a_material - Added
get_details_of_an_attachment_for_a_purchase_order - Added
get_details_of_an_attachment_for_a_shipment - Added
get_details_of_an_attachment_for_a_transfer - Added
get_details_of_an_attachment_for_an_adjustment - Added
get_details_of_an_attachment_for_an_inter_project_transfer - Added
get_details_of_attachments_for_a_direct_issue - Added
get_details_of_attachments_for_a_material - Added
get_details_of_attachments_for_a_purchase_order - Added
get_details_of_attachments_for_a_shipment - Added
get_details_of_attachments_for_a_transfer - Added
get_details_of_attachments_for_an_adjustment - Added
get_details_of_attachments_for_an_inter_project_transfer - Added
get_details_of_issuing_records_summary - Added
get_details_of_one_or_more_attachments_for_a_defect_resource - Added
get_divisions_and_sets_options_for_specification_sections_for_a - Changed
get_environmental_type_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_equipment_by_id_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_equipment_by_id_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_equipment_by_project_project1 field changed- changed
Input schema / properties / view / enumPrevious value: -[ - "compact", - "short", - "normal", - "ids" -]New value: +[ + "compact", + "basic", + "short", + "normal", + "ids" +]
- Changed
get_equipment_maintenance_record_by_its_id_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_equipment_maintenance_record_by_its_id_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_equipment_projects_company1 field changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -}
- Added
get_estimating_project_data_by_procore_project_id - Added
get_estimating_settings - Changed
get_export_options_for_existing_rfi1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_file_by_its_uuid2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_filing_type_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_filing_types1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_group_by_id4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Changed
get_groups11 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / filters__context_id / descriptionPrevious value: -"Query string parameter — filter results by context id"New value: +"Query string parameter — context ID to filter groups by" - changed
Input schema / properties / filters__context_type_id / descriptionPrevious value: -"Query string parameter — filters[context_type_id]"New value: +"Query string parameter — context type ID to filter by" - changed
Input schema / properties / filters__created_before / descriptionPrevious value: -"Query string parameter — filters[created_before]"New value: +"Query string parameter — filter groups created before this ISO date-time" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Query string parameter — filter results by id"New value: +"Query string parameter — jSON array of group IDs to filter by" - changed
Input schema / properties / filters__subcontext_type_id / descriptionPrevious value: -"Query string parameter — filters[subcontext_type_id]"New value: +"Query string parameter — sub-context type ID to filter by" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Query string parameter — filter results by updated at"New value: +"Query string parameter — filter by updated_at range in ISO format (start...end)" - changed
Input schema / properties / page / descriptionPrevious value: -"Query string parameter — page number for paginated results (default: 1)"New value: +"Query string parameter — page number for pagination (1-based)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Query string parameter — number of items per page (default: 100, max: 100)"New value: +"Query string parameter — number of items per page (max 5000 for ids_only)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project" - removed
Input schema / properties / viewRemoved value: -{ - "description": "Query string parameter — response detail level. Use 'normal' for standard fields or 'extended' for all fields", - "type": "string" -}
- Changed
get_groups_for_layer4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / page / descriptionPrevious value: -"Query string parameter — page number for paginated results (default: 1)"New value: +"Query string parameter — page number for pagination (1-based)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Query string parameter — number of items per page (default: 100, max: 100)"New value: +"Query string parameter — number of items per page (max 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Changed
get_harm_source_filter_options_project1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_harm_source_filter_options_project_v1_01 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_hazard_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_import_logs2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_import_status2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_incident_statuses1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_information_of_a_budget_change2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
get_issuing_line_items - Changed
get_layer_by_id4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Changed
get_layers11 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / filters__context_id / descriptionPrevious value: -"Query string parameter — filter results by context id"New value: +"Query string parameter — context ID to filter layers by" - changed
Input schema / properties / filters__context_type_id / descriptionPrevious value: -"Query string parameter — filters[context_type_id]"New value: +"Query string parameter — context type ID to filter by" - changed
Input schema / properties / filters__created_before / descriptionPrevious value: -"Query string parameter — filters[created_before]"New value: +"Query string parameter — filter layers created before this ISO date-time" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Query string parameter — filter results by id"New value: +"Query string parameter — jSON array of layer IDs to filter by" - changed
Input schema / properties / filters__subcontext_type_id / descriptionPrevious value: -"Query string parameter — filters[subcontext_type_id]"New value: +"Query string parameter — sub-context type ID to filter by" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Query string parameter — filter results by updated at"New value: +"Query string parameter — filter by updated_at range in ISO format (start...end)" - changed
Input schema / properties / page / descriptionPrevious value: -"Query string parameter — page number for paginated results (default: 1)"New value: +"Query string parameter — page number for pagination (1-based)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Query string parameter — number of items per page (default: 100, max: 100)"New value: +"Query string parameter — number of items per page (max 5000 for ids_only)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project" - removed
Input schema / properties / viewRemoved value: -{ - "description": "Query string parameter — response detail level. Use 'normal' for standard fields or 'extended' for all fields", - "type": "string" -}
- Changed
get_layers_for_context4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / page / descriptionPrevious value: -"Query string parameter — page number for paginated results (default: 1)"New value: +"Query string parameter — page number for pagination (1-based)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Query string parameter — number of items per page (default: 100, max: 100)"New value: +"Query string parameter — number of items per page (max 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Added
get_line_items_for_a_transfer - Added
get_list_of_deleted_specification_sections_for_a_project_company - Added
get_list_of_deleted_specification_sections_for_a_project_v2_1 - Changed
get_location_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_look_ahead_data1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_managed_equipment_filter_options_project1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_managed_equipment_filter_options_project_v1_01 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_managed_equipment_filter_options_project_v1_0_21 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_managed_equipment_filter_options_project_v1_0_41 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_markup_stamp5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project" - changed
Input schema / properties / viewer_doc_id / descriptionPrevious value: -"URL path parameter — unique identifier of the viewer doc"New value: +"URL path parameter — unique identifier of the viewer document"
- Added
get_markups_by_groups - Added
get_material_details_by_id - Added
get_meeting_change_history - Changed
get_my_open_items_statistics2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_next_available_number2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_next_available_number_by_spec_section2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_observation_item_pdf_url2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_one_coordination_issue_viewpoint_model_manager_or_legacy4 fields changed- changed
Input schema / properties / included / descriptionPrevious value: -"Query string parameter — **Ignored.** Legacy show always returns the full `BimViewpointBlueprint` `:procore_v0_1` payload.\n"New value: +"Query string parameter — **Ignored.** The `viewpoint_format` query parameter now controls the response shape.\nWhen `viewpoint_format=v2` (default), all viewpoints are returned in Model Manager shape.\nWhen `viewpoint_format..." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - added
Input schema / properties / viewpoint_formatAdded value: +{ + "description": "Query string parameter — specify the response format for viewpoint data.\nWhen `v1`, all viewpoints (including Model Manager-backed) are returned in legacy shape (`camera_data`, `sections_data`, `redlines_data` as JSON stri...", + "enum": [ + "v1", + "v2" + ], + "type": "string" +}
- Changed
get_open_items_statistics2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_operation_details2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
get_or_create_company_level_context_with_hierarchy - Changed
get_or_create_context_with_hierarchy3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / context_type / enumPrevious value: -[ - "document_revision", - "document_container" -]New value: +[ + "document_revision", + "document_container", + "FileVersion", + "folders_attachments", + "specification_section_revision", + "drawing_revision" +] - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Added
get_or_create_document_info - Removed
get_or_create_document_info_v1_1 - Removed
get_or_refresh_an_access_token - Added
get_paginated_receipt_details - Added
get_paginated_receipt_line_items - Added
get_paginated_receipt_line_items_for_a_receipt_with_specified_id - Changed
get_permission_level_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
get_permissions_and_feature_flags_for_specification_sections - Changed
get_person_assignments1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_persons_assignment_history_data1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
get_procore_default_fieldsets_configuration_company - Added
get_procore_default_fieldsets_configuration_project - Changed
get_project_assignments1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_project_currency_configuration4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — integer ID of the Procore company that owns the project. Obtainable from GET /rest/v1.0/companies." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"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."
- Changed
get_project_exchange_rates5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — integer ID of the Procore company that owns the project. Obtainable from GET /rest/v1.0/companies." - changed
Input schema / properties / include_inactive / descriptionPrevious value: -"Query string parameter — include inactive exchange rates"New value: +"Query string parameter — when true, includes inactive (soft-deleted) exchange rates in the response alongside active ones. Defaults to false (only active rates returned). Useful for audit views and managing rate lifecycle...." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"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."
- Removed
get_project_incident_configuration - Added
get_project_incidents_configuration - Added
get_project_naming_standard_rules - Changed
get_project_task_by_id_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_project_task_by_id_company_v2_02 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
get_project_workflowable_object_instance_histories - Changed
get_projects_assignment_history_data1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
get_purchase_order_header_details - Added
get_receipt_change_history - Added
get_receipt_header_details_by_id - Added
get_receipt_properties - Changed
get_requisition_compliance_document2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_resource_planning_notification_profiles2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_responsible_company_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_schedule_by_id2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_schedule_import_processing_state2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_schedule_metadata2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
get_shipment_header_details - Changed
get_single_custom_field2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_single_time_off_record2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_stamps3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — the unique identifier of the company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Query string parameter — number of stamps to return per page"New value: +"Query string parameter — number of stamps to return per page (max 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — the unique identifier of the project"New value: +"URL path parameter — unique identifier of the project"
- Changed
get_status_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_tags_requiring_action_report1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_the_daily_log_header_via_date_or_id2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_the_minutes_and_date_created_for_all_parent_topics_project1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_the_minutes_and_date_created_for_all_parent_topics_v1_01 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
get_the_specifications_user_permissions - Changed
get_timeline_event_by_id2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Removed
get_token_info - Changed
get_total_workers_and_man_hours2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
get_unified_company_upload_url - Added
get_unified_part_upload_url - Added
get_unified_upload_status - Added
get_unified_upload_url - Changed
get_units_of_measure1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
get_unreviewed_uploads_for_specification_sections_for_a_2 - Added
get_unreviewed_uploads_for_specification_sections_for_a_project - Added
get_vendors_for_a_company - Changed
get_work_activity_filter_options_project1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_work_activity_filter_options_project_v1_01 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_work_activity_filter_options_project_v1_0_21 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_work_activity_filter_options_project_v1_0_41 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
get_workflow_data2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_workflow_instance_history_company3 fields changed- added
Input schema / properties / filters__activity_types__Added value: +{ + "description": "Query string parameter — optional activity filter (`comments`, `attachments`). When present, the response only includes timeline rows that match the filter. **Future step events are not included** when this filter is used ...", + "items": {}, + "type": "array" +} - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_workflow_instance_history_project3 fields changed- added
Input schema / properties / filters__activity_types__Added value: +{ + "description": "Query string parameter — optional activity filter (`comments`, `attachments`). When present, the response only includes timeline rows that match the filter. **Future step events are not included** when this filter is used ...", + "items": {}, + "type": "array" +} - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_workflow_preset_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
get_workflow_preset_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
gets_a_direct_issue_record_by_id - Added
gets_a_paginated_list_of_adjustment_documents - Added
gets_a_paginated_list_of_adjustment_line_items - Added
gets_a_paginated_list_of_inter_project_transfer_line_items - Added
gets_a_paginated_list_of_inter_project_transfer_summaries - Added
gets_a_paginated_list_of_transfer_line_items_across_all - Added
gets_a_paginated_list_of_transfers_for_the_project - Added
gets_all_available_resource_types_in_the_system - Added
gets_all_line_items_for_a_direct_issue_record - Added
gets_all_material_requirements_line_items - Added
gets_associated_documents_for_a_purchase_order - Added
gets_change_history_for_a_defect - Added
gets_change_history_for_a_material_requirement - Added
gets_configurable_columns_for_inter_project_transfers - Added
gets_configurable_columns_for_the_issuing_resource - Added
gets_configurable_columns_for_the_receipt_view - Added
gets_details_of_a_single_attachment_for_a_material_requirements - Added
gets_details_of_a_single_attachment_for_a_receipt_resource - Added
gets_details_of_a_specific_material_requirements_header_by_its - Added
gets_details_of_attachments_for_a_material_requirements_resource - Added
gets_details_of_attachments_for_a_receipt_resource - Changed
gets_documents_attached_to_bid_package2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
gets_line_items_for_a_specific_adjustment_document - Added
gets_line_items_for_a_specific_inter_project_transfer - Added
gets_line_items_for_a_specific_material_requirements_document - Added
gets_material_requirements_based_on_the_specified_view_type - Added
gets_materials_with_name_and_unit_of_measure - Added
gets_properties_for_inter_project_transfers - Added
gets_related_documents_for_a_defect - Added
gets_related_documents_for_a_material - Added
gets_related_documents_for_a_material_requirement - Added
gets_related_documents_for_a_purchase_order - Added
gets_related_documents_for_a_receipt - Added
gets_related_documents_for_a_shipment - Added
gets_related_documents_for_receipts_by_dashboard_type - Added
gets_related_documents_for_shipments_by_dashboard_type - Added
gets_the_change_history_for_a_specific_inter_project_transfer - Added
gets_the_header_details_for_a_specific_adjustment_document - Added
gets_the_header_details_for_a_specific_inter_project_transfer - Added
gets_transfer_details_by_id_based_on_the_specified_view_type - Removed
grant_app_authorization - Added
header_info_for_specification_section_revision - Changed
initiate_schedule_import1 field changed- changed
Input schema / properties / file / descriptionPrevious value: -"JSON request body field — schedule file to import. Supported formats: MPD, MPP, MPX, MSPDI, PPX, XER, XML."New value: +"JSON request body field — schedule file to import. Supported formats: .mpp, .ppx, .xer."
- Changed
it_fetches_a_budget_note2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
item_scoped_document_markup_permissions - Added
link_sub_assets_to_a_parent_asset_company - Added
link_sub_assets_to_a_parent_asset_project - Changed
list_accepted_weather_conditions_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
list_accepted_weather_conditions_project_v1_02 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
list_action_plan_parties1 field changed- changed
Input schema / properties / sort / descriptionPrevious value: -"Query string parameter — direction of sorting param (name) is in desc order of full name"New value: +"Query string parameter — sort the collection by full name. Ascending by default; prefix the value with a hyphen (`-name`) to sort descending."
- Changed
list_activities4 fields changed- added
Input schema / properties / filters__finish_date__gteAdded value: +{ + "description": "Query string parameter — filter activities with finish date on or after this date (inclusive, ISO 8601 date YYYY-MM-DD in project-local time)", + "type": "string" +} - added
Input schema / properties / filters__finish_date__lteAdded value: +{ + "description": "Query string parameter — filter activities with finish date on or before this date (inclusive, ISO 8601 date YYYY-MM-DD in project-local time)", + "type": "string" +} - added
Input schema / properties / filters__start_date__gteAdded value: +{ + "description": "Query string parameter — filter activities with start date on or after this date (inclusive, ISO 8601 date YYYY-MM-DD in project-local time)", + "type": "string" +} - added
Input schema / properties / filters__start_date__lteAdded value: +{ + "description": "Query string parameter — filter activities with start date on or before this date (inclusive, ISO 8601 date YYYY-MM-DD in project-local time)", + "type": "string" +}
- Changed
list_affliction_types2 fields changed- added
Input schema / properties / filters__queryAdded value: +{ + "description": "Query string parameter — return item(s) containing query.", + "type": "string" +} - changed
Input schema / properties / sort / descriptionPrevious value: -"Query string parameter — sort order for results. Prefix with '-' for descending order"New value: +"Query string parameter — sort results by the specified field."
- Removed
list_all_attachments - Added
list_all_attachments_company - Added
list_all_attachments_project - Added
list_all_attachments_project_v2_0 - Changed
list_all_available_permission_templates_for_a_project1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
list_all_connection_statuses_for_external_rfis_filter_options - Changed
list_all_maintenance_logs_attachment1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_all_project_crew_ids3 fields changed- added
Input schema / properties / filters__deleted_atAdded value: +{ + "description": "Query string parameter — scope crew IDs by deleted_at datetime/date range.", + "type": "string" +} - added
Input schema / properties / filters__idAdded value: +{ + "description": "Query string parameter — scope crew IDs to the specified crew IDs.", + "items": {}, + "type": "array" +} - added
Input schema / properties / filters__with_searchAdded value: +{ + "description": "Query string parameter — scope crew IDs by search text.", + "type": "string" +}
- Changed
list_all_project_crews4 fields changed- added
Input schema / properties / filters__deleted_atAdded value: +{ + "description": "Query string parameter — return crew(s) deleted within the specified datetime/date range. Formats: YYYY-MM-DD...YYYY-MM-DD or YYYY-MM-DDTHH:MM:SSZ...YYYY-MM-DDTHH:MM:SSZ.", + "type": "string" +} - added
Input schema / properties / filters__idAdded value: +{ + "description": "Query string parameter — return crew(s) with the specified IDs.", + "items": {}, + "type": "array" +} - added
Input schema / properties / filters__with_searchAdded value: +{ + "description": "Query string parameter — filter crews by search text.", + "type": "string" +} - added
Input schema / properties / serializer_viewAdded value: +{ + "description": "Query string parameter — changes what fields are included in the response.", + "enum": [ + "ids_only" + ], + "type": "string" +}
- Changed
list_alternative_response_sets1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_app_installations_v1_01 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
list_asset_statuses_company - Added
list_asset_statuses_project - Added
list_asset_system_states - Added
list_asset_types_company - Added
list_asset_types_project - Added
list_assets_company - Added
list_assets_project - Changed
list_assignable_users1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_assignee_company_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_assignee_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
list_attachments_company - Added
list_attachments_for_project_asset_type - Added
list_attachments_project - Added
list_available_external_rfi_filter_options - Added
list_available_fields_for_rule_configuration - Added
list_available_fields_for_rule_configuration_project_scope - Changed
list_available_filters_for_coordination_issues1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_available_observation_item_statuses_with_localized_labels2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Query string parameter — observation Item ID. When provided, returns only statuses the user can set for this specific observation item based on their permissions."New value: +"Query string parameter — observation Item ID. When provided, returns only the statuses the requesting user may set on that specific Observation. When omitted, returns all statuses available on the Project." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_available_rfi_assigned_id_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_available_rfi_ball_in_court_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_available_rfi_cost_code_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_available_rfi_filters2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
list_available_rfi_prefix_stage_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_available_rfi_priority_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_available_rfi_received_from_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_available_rfi_responsible_contractor_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_available_rfi_rfi_manager_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_available_rfi_status_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_available_rfi_sub_job_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_available_rfis_locations1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_available_status_transitions2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
list_available_statuses_for_external_rfis_filter_options - Changed
list_available_submittal_filters1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_bid_packages_project4 fields changed- added
Input schema / properties / filters__bid_due_dateAdded value: +{ + "description": "Query string parameter — return item(s) whose associated bid package has the specified bid due date (ISO 8601 date format)", + "type": "string" +} - added
Input schema / properties / filters__created_atAdded value: +{ + "description": "Query string parameter — return item(s) within a specific created at iso8601 datetime range", + "type": "string" +} - added
Input schema / properties / filters__has_bid_formsAdded value: +{ + "description": "Query string parameter — filter by bid form presence. When true, only bid packages that have bid forms are returned; when false, only bid packages without bid forms are returned. When omitted, no bid form filtering is appl...", + "type": "boolean" +} - added
Input schema / properties / filters__statusAdded value: +{ + "description": "Query string parameter — filter by bid package status. Accepted values are 'open', 'closed', or 'hidden'. When omitted, recycle-bin (hidden) bid packages are excluded by default.", + "enum": [ + "open", + "closed", + "hidden" + ], + "type": "string" +}
- Changed
list_bid_uploads1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_bids_within_a_company1 field changed- changed
Input schema / properties / company_id / typePrevious value: -"number"New value: +"string"
- Removed
list_bids_within_a_project - Added
list_bids_within_a_project_company - Added
list_bids_within_a_project_v1_0 - Changed
list_body_parts1 field changed- changed
Input schema / properties / sort / descriptionPrevious value: -"Query string parameter — sort order for results. Prefix with '-' for descending order"New value: +"Query string parameter — sort results by the specified field."
- Changed
list_budget_change_summaries2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
list_budget_detail_columns1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_budget_detail_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Removed
list_calendars - Added
list_calendars_v2_1 - Added
list_change_event_comments - Changed
list_change_event_production_quantities1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_change_events2 fields changed- added
Input schema / properties / filters__searchAdded value: +{ + "description": "Query string parameter — return item(s) matching the specified Search query.", + "type": "string" +} - removed
Input schema / properties / revenue_unit_cost_project_currencyRemoved value: -{ - "additionalProperties": {}, - "description": "JSON request body field — return Change Events with Change Items having the specified revenue unit cost in project currency", - "type": "object" -}
- Added
list_change_history_company - Added
list_change_history_project - Changed
list_change_order_requests1 field changed- added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — parameter affecting the level of detail returned. The `extended` view includes the total tax amount for each Change Order Request.", + "enum": [ + "extended" + ], + "type": "string" +}
- Added
list_change_type_filter_options_company - Added
list_change_type_filter_options_project - Changed
list_checklist_list_assigned_company_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Removed
list_checklist_list_closed_by_contact_filter_options_project_v1 - Added
list_checklist_list_closed_by_contact_filter_options_v1_0 - Changed
list_checklist_list_created_by_contact_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_checklist_list_equipment_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_checklist_list_inspection_type_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_checklist_list_inspector_filter_options_project_v1_01 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_checklist_list_location_filter_options_project_v1_01 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_checklist_list_point_of_contact_filter_options_project_v1_01 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_checklist_list_responsible_contractor_filter_options_21 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Removed
list_checklist_list_specification_section_filter_options - Added
list_checklist_list_specification_section_filter_options_v1_0 - Changed
list_checklist_list_status_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_checklist_list_template_filter_options_project_v1_01 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_checklist_list_trade_filter_options_project_v1_01 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_checklist_signature_requests1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_checklists1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_commitment_change_order_line_items1 field changed- added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — the view to use for the response. Use `extended` to include `change_event_line_item` and `external_data` (ERP origin fields).\nAn invalid value returns a 400 error.", + "enum": [ + "default", + "extended" + ], + "type": "string" +}
- Added
list_commitment_contract_attachments - Changed
list_commitment_contract_line_items1 field changed- added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — the view to use for the response. Use `extended` to include `change_event_line_item` and `external_data` (ERP origin fields).\nAn invalid value returns a 400 error.", + "enum": [ + "default", + "extended" + ], + "type": "string" +}
- Changed
list_commitment_contracts1 field changed- added
Input schema / properties / filters__searchAdded value: +{ + "description": "Query string parameter — returns item(s) matching the specified search query string.", + "type": "string" +}
- Changed
list_communication_threads2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
list_company_checklist_sections1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_company_checklist_template_sections1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Removed
list_company_folders_and_files - Changed
list_company_project_status_snapshots5 fields changed- added
Input schema / properties / comparison_budget_column_idsAdded value: +{ + "description": "Query string parameter — restrict comparison data to these budget column IDs. When omitted, comparison is returned for all columns.", + "items": {}, + "type": "array" +} - added
Input schema / properties / comparison_financial_period_idAdded value: +{ + "description": "Query string parameter — iD of the financial period to use as the comparison baseline. When omitted, no comparison data is returned.", + "type": "string" +} - added
Input schema / properties / filters__financial_period_id__Added value: +{ + "description": "Query string parameter — filter snapshots by financial period ID. Accepts one or more IDs. Pass the token `null` (or `nil`) as a value to match snapshots that have no financial period. Tokens and IDs can be combined — e.g....", + "items": {}, + "type": "array" +} - added
Input schema / properties / filters__project_number__Added value: +{ + "description": "Query string parameter — filter snapshots by one or more project numbers", + "items": {}, + "type": "array" +} - changed
Input schema / properties / sort / enumPrevious value: -[ - "created_at", - "-created_at" -]New value: +[ + "created_at", + "-created_at", + "project_number", + "-project_number", + "status", + "-status" +]
- Added
list_company_root_folder_children - Changed
list_company_vendors2 fields changed- changed
Input schema / properties / view / descriptionPrevious value: -"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). The default view is extended."New value: +"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). The `minimal` view returns a reduced payload and does not require Directory permissions; all oth..." - changed
Input schema / properties / view / enumPrevious value: -[ - "compact", - "normal", - "erp", - "extended", - "directory", - "summary" -]New value: +[ + "compact", + "directory", + "erp", + "extended", + "minimal", + "normal", + "summary" +]
- Changed
list_company_wbs_patterns2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
list_company_wbs_segment_item_lists1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_company_wbs_segments1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_companys_projects1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
list_configurable_field_set_sections - Changed
list_configurable_field_sets3 fields changed- changed
Input schema / properties / company_id / typePrevious value: -"number"New value: +"string" - added
Input schema / properties / filters__incident_type_id__Added value: +{ + "description": "Query string parameter — filter by incident type id(s). Could be an integer or an array of integers.", + "items": {}, + "type": "array" +} - removed
Input schema / properties / include_lov_entriesRemoved value: -{ - "description": "Query string parameter — whether or not to include LOV entries in the response\n(defaults to true)", - "type": "boolean" -}
- Added
list_contract_compliance_documents - Changed
list_contributing_behaviors1 field changed- added
Input schema / properties / sortAdded value: +{ + "description": "Query string parameter — sort direction. Use the value to sort ascending, or prefix with a hyphen (e.g. -name) to sort descending.", + "enum": [ + "name" + ], + "type": "string" +}
- Changed
list_contributing_conditions1 field changed- added
Input schema / properties / sortAdded value: +{ + "description": "Query string parameter — sort direction. Use the value to sort ascending, or prefix with a hyphen (e.g. -name) to sort descending.", + "enum": [ + "name" + ], + "type": "string" +}
- Changed
list_coordination_issue_assignable_users1 field changed- added
Input schema / properties / min_access_levelAdded value: +{ + "description": "Query string parameter — minimum project access level for users included in the assignee list for the Coordination Issues domain. `admin` limits results to Admin (plus project admins per server rules). `standard` includes ...", + "enum": [ + "admin", + "standard", + "read_only" + ], + "type": "string" +}
- Changed
list_coordination_issue_file_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_coordination_issue_viewpoints_legacy_model_manager_rest_v22 fields changed- changed
Input schema / properties / included / descriptionPrevious value: -"Query string parameter — **Ignored.** Legacy list items always return the full `:procore_v0_1` blueprint shape; MM-backed\nrows always return the full Model Manager viewpoint object.\n"New value: +"Query string parameter — **Ignored.** The `viewpoint_format` query parameter now controls the response shape.\nWhen `viewpoint_format=v2` (default), all viewpoints are returned in Model Manager shape.\nWhen `viewpoint_format..." - added
Input schema / properties / viewpoint_formatAdded value: +{ + "description": "Query string parameter — specify the response format for viewpoint data.\nWhen `v1`, all viewpoints (including Model Manager-backed) are returned in legacy shape (`camera_data`, `sections_data`, `redlines_data` as JSON stri...", + "enum": [ + "v1", + "v2" + ], + "type": "string" +}
- Changed
list_coordination_issues1 field changed- added
Input schema / properties / filters__created_by_company_id__Added value: +{ + "description": "Query string parameter — filter item(s) with matching created by vendor companies.", + "items": {}, + "type": "array" +}
- Changed
list_coordination_issues_for_a_project_rest_v2_05 fields changed- added
Input schema / properties / filters__created_by_company_idAdded value: +{ + "description": "Query string parameter — filter item(s) with matching created by vendor companies.", + "items": {}, + "type": "array" +} - added
Input schema / properties / filters__include_deletedAdded value: +{ + "description": "Query string parameter — controls visibility of soft-deleted coordination issues (recycle bin).\n- `only`: return only soft-deleted issues\n- `with`: return all issues including deleted ones\n- omitted (default): return only ...", + "enum": [ + "only", + "with" + ], + "type": "string" +} - added
Input schema / properties / filters__is_privateAdded value: +{ + "description": "Query string parameter — filter by private flag. When the `enable-ci-private` feature is inactive for the project, all issues behave as public\nfor visibility and this filter has limited effect. Values are booleans (`true` ...", + "items": {}, + "type": "array" +} - changed
Input schema / properties / included / descriptionPrevious value: -"Query string parameter — comma-separated blueprint field names (e.g. `assignee,title,uuid,location`). When omitted or empty,\nall conditional fields are included.\n"New value: +"Query string parameter — comma-separated blueprint field names (e.g. `assignee,title,uuid,location,is_private`). When omitted or empty,\nall conditional fields are included.\n" - removed
Input schema / properties / sort / enumRemoved value: -[ - "created_at", - "-created_at", - "updated_at", - "-updated_at", - "due_date", - "-due_date", - "title", - "-title", - "status", - "-status", - "assignee", - "-assignee", - "created_by", - "-created_by" -]
- Changed
list_coordination_issues_in_recycle_bin1 field changed- added
Input schema / properties / filters__created_by_company_id__Added value: +{ + "description": "Query string parameter — filter item(s) with matching created by vendor companies.", + "items": {}, + "type": "array" +}
- Changed
list_coordination_issues_workflow_issues2 fields changed- added
Input schema / properties / filters__created_by_company_idAdded value: +{ + "description": "Query string parameter — filter item(s) with matching created by vendor companies.", + "items": {}, + "type": "array" +} - removed
Input schema / properties / sort / enumRemoved value: -[ - "created_at", - "-created_at", - "updated_at", - "-updated_at", - "due_date", - "-due_date", - "title", - "-title", - "status", - "-status", - "assignee", - "-assignee", - "created_by", - "-created_by" -]
- Changed
list_cost_codes_ids_for_timesheets1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_counts_of_daily_logs_project1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
list_created_by_company_filter_options - Changed
list_creation_source_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_creator_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
list_current_revision_for_external_rfis_filter_options - Changed
list_custom_field_definitions_company4 fields changed- changed
Input schema / properties / company_id / typePrevious value: -"number"New value: +"string" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Query string parameter — items per page, default: 100, max: 100"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - removed
Input schema / properties / tool_nameRemoved value: -{ - "description": "Query string parameter — the name of the company/project level tool that is allowed read permissions to custom field definitions.", - "enum": [ - "admin", - "timesheets" - ], - "type": "string" -} - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — controls which fields are returned for each Custom Field Definition.\n'with_configurable_field_sets' additionally includes the configurable_field_sets array listing the field sets that use the defin...", + "enum": [ + "default", + "with_configurable_field_sets" + ], + "type": "string" +}
- Changed
list_custom_field_definitions_configurable_field_sets1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Removed
list_custom_field_lov_entries - Added
list_custom_field_lov_entries_company - Added
list_custom_field_lov_entries_v1_0 - Removed
list_custom_field_metadata - Added
list_custom_field_metadata_company - Added
list_custom_field_metadata_v1_0 - Changed
list_daily_construction_report_logs_vendor_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_default_correspondence_types2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
list_default_field_values_company - Added
list_default_field_values_project - Changed
list_default_task_items_project_distribution_members2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Removed
list_deleted_payouts - Changed
list_deleted_punch_items2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
list_delivery_methods - Added
list_distinct_material_ids_for_a_direct_issue_pick_document - Added
list_document_snapshots_for_a_coordination_issue_rest_v2_0 - Added
list_document_uploads_v2 - Changed
list_drawing_areas1 field changed- added
Input schema / properties / filters__exclude_empty_connectedAdded value: +{ + "description": "Query string parameter — when `true`, excludes connected drawing areas with no active revisions.\nExample: `filters[exclude_empty_connected]=true`", + "type": "boolean" +}
- Changed
list_drawing_revision_terms1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_drawing_revisions2 fields changed- changed
Input schema / properties / sort / descriptionPrevious value: -"Query string parameter — sort order for results. Prefix with '-' for descending order"New value: +"Query string parameter — sort by field. Prefix the sort key with `-` for descending order (e.g. `-drawing_number`). Multiple comma-separated sort keys are supported and applied in order. In addition to the fixed keys below..." - changed
Input schema / properties / sort / enumPrevious value: -[ - "id", - "-id" -]New value: +[ + "id", + "-id", + "created_at", + "deleted_at", + "drawing_number", + "number", + "title", + "drawing_date", + "received_date", + "status", + "revision_number", + "revision", + "drawing_set", + "sheet_number", + "obsolete" +]
- Changed
list_drawing_tiles2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Removed
list_early_pay_programs - Changed
list_environmental_types1 field changed- changed
Input schema / properties / sort / descriptionPrevious value: -"Query string parameter — sort order for results. Prefix with '-' for descending order"New value: +"Query string parameter — sort direction. Use the value to sort ascending, or prefix with a hyphen (e.g. -name) to sort descending."
- Changed
list_environmentals1 field changed- changed
Input schema / properties / sort / descriptionPrevious value: -"Query string parameter — sort order for results. Prefix with '-' for descending order"New value: +"Query string parameter — sort direction. Use the value to sort ascending, or prefix with a hyphen (e.g. -full_number) to sort descending."
- Changed
list_equipment_timecard_entries_project5 fields changed- added
Input schema / properties / filters__equipment_idAdded value: +{ + "description": "Query string parameter — return item(s) matching the specified equipment identifier(s).", + "items": {}, + "type": "array" +} - added
Input schema / properties / filters__party_idAdded value: +{ + "description": "Query string parameter — return item(s) matching the specified party ID(s).", + "items": {}, + "type": "array" +} - added
Input schema / properties / filters__timesheet_idAdded value: +{ + "description": "Query string parameter — return item(s) matching the specified timesheet ID(s).", + "items": {}, + "type": "array" +} - added
Input schema / properties / filters__wbs_code_idAdded value: +{ + "description": "Query string parameter — return item(s) matching the specified WBS code ID(s).", + "items": {}, + "type": "array" +} - added
Input schema / properties / serializer_viewAdded value: +{ + "description": "Query string parameter — optional response blueprint view. Defaults to `compact`.", + "enum": [ + "default", + "compact", + "mobile" + ], + "type": "string" +}
- Added
list_existing_received_from_login_information_for_external_rfis - Added
list_existing_responsible_contractors_for_external_rfis_filter - Added
list_existing_rfi_managers_for_external_rfis_filter_options - Added
list_existing_sync_statuses_for_external_rfis_filter_options - Added
list_external_rfi_revisions - Added
list_external_rfis - Added
list_field_rules_for_an_asset_type - Added
list_field_rules_for_an_asset_type_project_scope - Changed
list_filter_options_for_created_by1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_filter_options_for_location1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_filter_options_for_submittal_manager1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Query string parameter ��� page number for paginated results (default: 1)"New value: +"Query string parameter — page number for paginated results (default: 1)"
- Changed
list_filter_options_for_submittal_package1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_filters_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
list_filters_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
list_harm_sources2 fields changed- changed
Input schema / properties / all / descriptionPrevious value: -"Query string parameter — harm Sources"New value: +"Query string parameter — when true, returns both active and inactive harm sources. When omitted or false, returns only active harm sources." - changed
Input schema / properties / sort / descriptionPrevious value: -"Query string parameter — sort order for results. Prefix with '-' for descending order"New value: +"Query string parameter — sort direction. Use the value to sort ascending, or prefix with a hyphen (e.g. -name) to sort descending."
- Changed
list_hazards2 fields changed- changed
Input schema / properties / all / descriptionPrevious value: -"Query string parameter — both active and inactive Hazards"New value: +"Query string parameter — when true, returns both active and inactive hazards. When omitted or false, only active hazards are returned." - added
Input schema / properties / sortAdded value: +{ + "description": "Query string parameter — sort direction. Use the value to sort ascending, or prefix with a hyphen (e.g. -name) to sort descending.", + "enum": [ + "name" + ], + "type": "string" +}
- Changed
list_image_category_ids_that_contain_images1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_incident_action_types1 field changed- changed
Input schema / properties / sort / descriptionPrevious value: -"Query string parameter — sort order for results. Prefix with '-' for descending order"New value: +"Query string parameter — sort results by the specified field."
- Changed
list_incident_alert_recipients1 field changed- changed
Input schema / properties / sort / descriptionPrevious value: -"Query string parameter — sort order for results. Prefix with '-' for descending order"New value: +"Query string parameter — sort results by the specified field."
- Changed
list_incident_alerts2 fields changed- added
Input schema / properties / filters__filing_type_idAdded value: +{ + "description": "Query string parameter — return item(s) with the specified Incident Filing Type IDs.", + "items": {}, + "type": "array" +} - changed
Input schema / properties / sort / descriptionPrevious value: -"Query string parameter — sort order for results. Prefix with '-' for descending order"New value: +"Query string parameter — sort results by the specified field."
- Changed
list_incident_filing_types2 fields changed- added
Input schema / properties / filters__activeAdded value: +{ + "description": "Query string parameter — if true, returns item(s) with a status of 'active'.", + "type": "boolean" +} - changed
Input schema / properties / sort / descriptionPrevious value: -"Query string parameter — sort order for results. Prefix with '-' for descending order"New value: +"Query string parameter — sort direction. Use the value to sort ascending, or prefix with a hyphen (e.g. -name) to sort descending."
- Changed
list_incidents1 field changed- changed
Input schema / properties / filters__query / descriptionPrevious value: -"Query string parameter — return item(s) containing query. Searchable fields include Incident title, Creator, Witness Statement, Incident Action description, Incident Action Type, Contributing Behavior, Contributing Conditi..."New value: +"Query string parameter — full-text search across incident title, creator name, witness statements, action descriptions, action types, contributing behaviors, contributing conditions, hazards, and location names. Returns in..."
- Changed
list_injuries2 fields changed- changed
Input schema / properties / filters__query / descriptionPrevious value: -"Query string parameter — return item(s) containing query"New value: +"Query string parameter — full-text search across injury description and related fields. Returns injuries where any searchable field contains the query string." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Query string parameter — incident ID. When provided, the list will be scoped to only the Injuries for a given Incident."New value: +"Query string parameter — optional incident ID to scope results. When provided, returns only injury records belonging to the specified incident. Omit to retrieve injuries across all incidents in the project."
- Changed
list_inspection_users4 fields changed- added
Input schema / properties / filters__inspection_idAdded value: +{ + "description": "Query string parameter — scopes signatory evaluation to a specific inspection. Closed inspections return no signatories. When the ID is unknown, falls back to project-wide evaluation.", + "type": "number" +} - added
Input schema / properties / filters__potential_signatoryAdded value: +{ + "description": "Query string parameter — when true, returns only users eligible to sign an inspection.", + "type": "boolean" +} - changed
Input schema / properties / sort / descriptionPrevious value: -"Query string parameter — direction of sorting param (name) is in desc order of full name"New value: +"Query string parameter — sort the collection by full name. Ascending by default; prefix the value with a hyphen (`-name`) to sort descending." - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). The default view is normal.", + "enum": [ + "compact", + "normal" + ], + "type": "string" +}
- Changed
list_inspectors2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
list_lien_waivers1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
list_line_item_type_categories - Changed
list_location_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_lookaheads1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
list_lov_codes_for_a_field_company - Added
list_lov_codes_for_a_field_project - Changed
list_manpower_logs_contact_options1 field changed- added
Input schema / properties / filters__is_employeeAdded value: +{ + "description": "Query string parameter — if provided, filters contacts by their is_employee status. When 'true', only return contacts that are employees. When 'false', only return contacts that are not employees.", + "type": "boolean" +}
- Changed
list_manual_forecast_line_items1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_manual_holds_for_a_given_invoice1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_monitoring_resources1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_near_misses2 fields changed- changed
Input schema / properties / filters__query / descriptionPrevious value: -"Query string parameter — return item(s) containing query"New value: +"Query string parameter — full-text search across near miss description and related fields. Returns near misses where any searchable field contains the query string." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Query string parameter — incident ID. When provided, the list will be scoped to only the Near Misses for a given Incident."New value: +"Query string parameter — optional incident ID to scope results. When provided, returns only near miss records belonging to the specified incident. Omit to retrieve near misses across all incidents in the project."
- Changed
list_observation_items5 fields changed- added
Input schema / properties / filters__custom_fieldsAdded value: +{ + "additionalProperties": {}, + "description": "Query string parameter — return Observation Items whose custom field values match the supplied JSON object. The object is keyed by custom field definition ID. Matching uses JSONB containment, so only item(s) containing all...", + "type": "object" +} - changed
Input schema / properties / filters__priority / descriptionPrevious value: -"Query string parameter — return item(s) with the specified priorities.\n"New value: +"Query string parameter — return only Observation Items at the given priorities. Values are\ncase-sensitive and match the `priority` field on the Observation.\nComma-separate values to match several priorities, e.g.\n`filters[..." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Query string parameter — return item(s) with the specified status values. The mapping is as follows:\n```\n 0: Initiated\n 1: Ready For reviewed\n 2: Not Accepted\n 3: Closed\n```"New value: +"Query string parameter — return only Observation Items in the given lifecycle states. Statuses are\nsupplied as their integer codes:\n```\n 0: Initiated\n 1: Ready For Review\n 2: Not Accepted\n 3: Closed\n 4: Draft\n```\nComm..." - added
Input schema / properties / sortAdded value: +{ + "description": "Query string parameter — sort item(s) by an attribute. The default sort is ascending. To sort in descending order, prepend the sort value with a hyphen character '-'. Default sort is number ascending.", + "type": "string" +} - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — controls how much of each Observation is returned. `normal` (the default) returns the documented response body. `ids` returns a bare array of Observation IDs — by far the cheapest option when you o...", + "enum": [ + "base", + "compact", + "full", + "ids", + "normal", + "permissions", + "safety_hub", + "web" + ], + "type": "string" +}
- Changed
list_of_document_revisions_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
list_of_document_revisions_project4 fields changed- added
Input schema / properties / company_idAdded value: +{ + "description": "URL path parameter — unique identifier for the company.", + "type": "string" +} - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - changed
Input schema / requiredPrevious value: -[ - "project_id", - "document_id" -]New value: +[ + "company_id", + "project_id", + "document_id" +]
- Changed
list_of_punch_list_assignee_filter_options2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
list_of_punch_list_vendor_filter_options2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
list_operations1 field changed- added
Input schema / properties / parent_idAdded value: +{ + "description": "Query string parameter — return child operations of the specified parent operation.", + "type": "string" +}
- Removed
list_payee_bank_details - Removed
list_payment_project_configurations - Removed
list_payments_beneficiaries - Changed
list_payments_subtier_waivers3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)" - changed
Input schema / properties / waiver_type / descriptionPrevious value: -"Query string parameter — waiver type of the subtier waiver. Can only be either \"unconditional\" or \"conditional\""New value: +"Query string parameter — filters returned waivers by type. Conditional waivers are contingent on payment; unconditional waivers confirm payment received." - added
Input schema / properties / waiver_type / enumAdded value: +[ + "unconditional", + "conditional" +]
- Changed
list_payments_subtiers_for_the_commitment1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_payments_subtiers_for_the_requisition1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_permission_templates1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_permission_templates_for_a_company_user1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_plan_revision_logs1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_possible_tool_filter_values1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_potential_points_of_contact1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_prime_change_order_line_items2 fields changed- changed
Input schema / properties / prime_change_order_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Prime Change Order."New value: +"URL path parameter — unique identifier for the Prime Change Order. See `GET /rest/v1.0/projects/{project_id}/prime_change_orders`.\n" - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — the view to use for the response. Use `extended` to include `change_event_line_item` and `external_data` (ERP origin fields).\nAn invalid value returns a 400 error.", + "enum": [ + "default", + "extended" + ], + "type": "string" +}
- Added
list_prime_contract_attachments - Changed
list_prime_contract_line_items_project1 field changed- added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — the view to use for the response. Use `extended` to include `external_data` (ERP origin fields).\nAn invalid value returns a 400 error.", + "enum": [ + "default", + "extended" + ], + "type": "string" +}
- Changed
list_programs_for_a_company_user1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Removed
list_project_configurable_field_sets - Added
list_project_configurable_field_sets_company - Added
list_project_configurable_field_sets_v1_0 - Changed
list_project_cost_codes1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_project_country_codes1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_project_dates_company1 field changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -}
- Added
list_project_fields - Changed
list_project_folders_and_files2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
list_project_job_titles1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
list_project_metadata_values - Changed
list_project_names_for_a_company_user1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_project_numbers_for_a_company_user1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_project_observation_types1 field changed- changed
Input schema / properties / filters__active / descriptionPrevious value: -"Query string parameter — filter by `active` status"New value: +"Query string parameter — return only types matching the given active state. Defaults to `true` when omitted — pass `false` to list deactivated types, or set it explicitly to control the filter."
- Changed
list_project_permission_templates1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
list_project_root_folder_children_company_scoped - Changed
list_project_stages_for_a_company_user1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_project_state_codes1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_project_status_snapshots4 fields changed- changed
Input schema / properties / comparison_budget_column_ids / descriptionPrevious value: -"Query string parameter — only return comparisons for the specified budget column IDs"New value: +"Query string parameter — restrict comparison data to these budget column IDs. When omitted, comparison is returned for all columns." - added
Input schema / properties / filters__financial_period_id__Added value: +{ + "description": "Query string parameter — filter snapshots by financial period ID. Accepts one or more IDs. Pass the token `null` (or `nil`) as a value to match snapshots that have no financial period. Tokens and IDs can be combined — e.g....", + "items": {}, + "type": "array" +} - changed
Input schema / properties / sort / descriptionPrevious value: -"Query string parameter — sort order for results. Prefix with '-' for descending order"New value: +"Query string parameter — sort order for the returned snapshots. Prefix a value with `-` for descending order. `created_at` sorts by when the snapshot was taken; `financial_period` sorts by the associated financial period's..." - changed
Input schema / properties / sort / enumPrevious value: -[ - "created_at", - "-created_at" -]New value: +[ + "created_at", + "-created_at", + "financial_period", + "-financial_period" +]
- Changed
list_project_trades1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_project_types_for_a_company_user1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
list_project_upload_requirements - Changed
list_project_users3 fields changed- removed
Input schema / properties / filters__idRemoved value: -{ - "description": "Query string parameter — returns users whose id attribute matches the parameter.", - "type": "number" -} - added
Input schema / properties / filters__id__Added value: +{ + "description": "Query string parameter — returns users whose id attribute matches the parameter.", + "items": {}, + "type": "array" +} - added
Input schema / properties / filters__search_by_full_nameAdded value: +{ + "description": "Query string parameter — returns users whose full_name matches the parameter.", + "type": "string" +}
- Changed
list_project_wbs_patterns2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
list_project_wbs_segments1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_property_damages1 field changed- changed
Input schema / properties / incident_id / descriptionPrevious value: -"Query string parameter — incident ID. When provided, the list will be scoped to only the Property Damages for a given Incident."New value: +"Query string parameter — optional incident ID to scope results. When provided, returns only property damage records belonging to the specified incident. Omit to retrieve property damages across all incidents in the project."
- Added
list_punch_item_activities - Changed
list_purchase_order_contract_detail_line_items1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_recycled_environmentals1 field changed- changed
Input schema / properties / sort / descriptionPrevious value: -"Query string parameter — sort order for results. Prefix with '-' for descending order"New value: +"Query string parameter — sort direction. Use the value to sort ascending, or prefix with a hyphen (e.g. -full_number) to sort descending."
- Changed
list_recycled_incidents1 field changed- changed
Input schema / properties / filters__query / descriptionPrevious value: -"Query string parameter — return item(s) containing query. Searchable fields include Incident title, Creator, Witness Statement, Incident Action description, Incident Action Type, Contributing Behavior, Contributing Conditi..."New value: +"Query string parameter — full-text search across incident title, creator name, witness statements, action descriptions, action types, contributing behaviors, contributing conditions, hazards, and location names. Returns in..."
- Changed
list_recycled_injuries2 fields changed- changed
Input schema / properties / filters__query / descriptionPrevious value: -"Query string parameter — return item(s) containing query"New value: +"Query string parameter — full-text search across injury description and related fields. Returns injuries where any searchable field contains the query string." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Query string parameter — incident ID. When provided, the list will be scoped to only the Recycled Injuries for a given Incident.\n\nNOTE: The afflictions and affected_body_part keys are deprecated. Please disregard and use t..."New value: +"Query string parameter — optional incident ID to scope results. When provided, returns only injury records belonging to the specified incident. Omit to retrieve injuries across all incidents in the project.\n\nNOTE: The affl..."
- Changed
list_recycled_near_misses2 fields changed- changed
Input schema / properties / filters__query / descriptionPrevious value: -"Query string parameter — return item(s) containing query"New value: +"Query string parameter — full-text search across near miss description and related fields. Returns near misses where any searchable field contains the query string." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Query string parameter — incident ID. When provided, the list will be scoped to only the Recycled Near Misses for a given Incident."New value: +"Query string parameter — optional incident ID to scope results. When provided, returns only near miss records belonging to the specified incident. Omit to retrieve near misses across all incidents in the project."
- Changed
list_recycled_observation_items3 fields changed- changed
Input schema / properties / filters__priority / descriptionPrevious value: -"Query string parameter — return item(s) with the specified priorities.\n"New value: +"Query string parameter — return only Observation Items at the given priorities. Values are\ncase-sensitive and match the `priority` field on the Observation.\nComma-separate values to match several priorities, e.g.\n`filters[..." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Query string parameter — return item(s) with the specified status values. The mapping is as follows:\n```\n 0: Initiated\n 1: Ready For reviewed\n 2: Not Accepted\n 3: Closed\n```"New value: +"Query string parameter — return only Observation Items in the given lifecycle states. Statuses are\nsupplied as their integer codes:\n```\n 0: Initiated\n 1: Ready For Review\n 2: Not Accepted\n 3: Closed\n 4: Draft\n```\nComm..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_regions_for_a_company_user1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_requisition_subcontractor_invoice_change_histories1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_requisitions_subcontractor_invoices_for_project2 fields changed- changed
Input schema / properties / view / descriptionPrevious value: -"Query string parameter — specifies which view (which attributes) of the resource is going to be present in the response."New value: +"Query string parameter — specifies which view (which attributes) of the resource is going to be present in the response. The `header_only` view is intended for split header / line-items rendering on the Subcontractor Invoi..." - changed
Input schema / properties / view / enumPrevious value: -[ - "default", - "extended", - "items", - "action_policy" -]New value: +[ + "default", + "extended", + "items", + "action_policy", + "header_only" +]
- Changed
list_responses1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_responses_in_the_specified_item_response_set1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_rfis32 fields changed- added
Input schema / properties / as_datetimesAdded value: +{ + "description": "Query string parameter — when true, returns date fields as datetime format", + "type": "boolean" +} - changed
Input schema / properties / filters__assigned_id / descriptionPrevious value: -"Query string parameter — filter results by assigned id"New value: +"Query string parameter — return item(s) with the specified Assigned ID or IDs. ID values may be sent as integers or numeric query-string values." - changed
Input schema / properties / filters__ball_in_court_id / descriptionPrevious value: -"Query string parameter — user ID. Return item(s) where the specified User ID is the Ball in Court."New value: +"Query string parameter — return item(s) where the specified User ID or IDs are Ball in Court. ID values may be sent as integers or numeric query-string values." - changed
Input schema / properties / filters__ball_in_court_id / typePrevious value: -"number"New value: +"string" - changed
Input schema / properties / filters__cost_code_id / descriptionPrevious value: -"Query string parameter — cost Code ID. Returns item(s) with the specified Cost Code ID or within the specified range of Cost Code IDs."New value: +"Query string parameter — return item(s) with the specified Cost Code ID or IDs. ID values may be sent as integers or numeric query-string values." - added
Input schema / properties / filters__current_revisionAdded value: +{ + "description": "Query string parameter — when true, excludes RFIs that are closed with a newer revision.", + "type": "string" +} - added
Input schema / properties / filters__for_location_id_with_sublocationsAdded value: +{ + "description": "Query string parameter — return item(s) with the specified Location ID or IDs, including their sublocations. ID values may be sent as integers or numeric query-string values.", + "type": "string" +} - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Query string parameter — return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified RFI ID or IDs. ID values may be sent as integers or numeric query-string values." - removed
Input schema / properties / filters__id / itemsRemoved value: -{} - changed
Input schema / properties / filters__id / typePrevious value: -"array"New value: +"string" - added
Input schema / properties / filters__initiated_atAdded value: +{ + "description": "Query string parameter — return item(s) initiated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-M...", + "type": "string" +} - added
Input schema / properties / filters__linked_to_connected_rfisAdded value: +{ + "description": "Query string parameter — legacy alias of `filters[linked_to_external_rfis]`, which is the preferred parameter name. Returns RFIs linked to an external (connected) RFI when `true`, and RFIs with no such link when `false`. S...", + "type": "boolean" +} - added
Input schema / properties / filters__linked_to_external_rfisAdded value: +{ + "description": "Query string parameter — returns RFIs linked to an external (connected) RFI when `true`, and RFIs with no such link when `false`. This is the preferred parameter name; `filters[linked_to_connected_rfis]` is a legacy alias ...", + "type": "boolean" +} - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Query string parameter — location ID. Returns item(s) with the specified Location ID or a range of Location IDs."New value: +"Query string parameter — return item(s) with the specified Location ID or IDs. ID values may be sent as integers or numeric query-string values." - removed
Input schema / properties / filters__location_id / itemsRemoved value: -{} - changed
Input schema / properties / filters__location_id / typePrevious value: -"array"New value: +"string" - changed
Input schema / properties / filters__number / descriptionPrevious value: -"Query string parameter — return item(s) with the specified RFI Number."New value: +"Query string parameter — return item(s) with the specified RFI number or full number." - changed
Input schema / properties / filters__number / typePrevious value: -"number"New value: +"string" - added
Input schema / properties / filters__overdueAdded value: +{ + "description": "Query string parameter — returns only overdue RFIs. The filter applies whenever the parameter is present and the value is not evaluated, so `filters[overdue]=false` returns the same overdue results as `true`. Omit the para...", + "type": "string" +} - changed
Input schema / properties / filters__prefix_stage_id / descriptionPrevious value: -"Query string parameter — return item(s) with the specified RFI Prefix Stage."New value: +"Query string parameter — return item(s) with the specified RFI Prefix Stage ID or IDs. ID values may be sent as integers or numeric query-string values." - added
Input schema / properties / filters__priorityAdded value: +{ + "description": "Query string parameter — return item(s) with the specified RFI priority or priorities.", + "type": "string" +} - changed
Input schema / properties / filters__received_from_login_information_id / descriptionPrevious value: -"Query string parameter — received From Login Information ID. Returns item(s) with the specified Received From Login Information ID."New value: +"Query string parameter — return item(s) with the specified Received From Login Information ID or IDs. ID values may be sent as integers or numeric query-string values." - changed
Input schema / properties / filters__responsible_contractor_id / descriptionPrevious value: -"Query string parameter — array of Responsible Contractor IDs. A single Responsible Contractor ID is also accepted."New value: +"Query string parameter — return item(s) with the specified Responsible Contractor ID or IDs. ID values may be sent as integers or numeric query-string values." - removed
Input schema / properties / filters__responsible_contractor_id / itemsRemoved value: -{} - changed
Input schema / properties / filters__responsible_contractor_id / typePrevious value: -"array"New value: +"string" - changed
Input schema / properties / filters__rfi_manager_id / descriptionPrevious value: -"Query string parameter — return item(s) with the specified RFI Manager ID."New value: +"Query string parameter — return item(s) with the specified RFI Manager ID or IDs. ID values may be sent as integers or numeric query-string values." - changed
Input schema / properties / filters__rfi_manager_id / typePrevious value: -"number"New value: +"string" - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Query string parameter — return item(s) with the specified RFI Status."New value: +"Query string parameter — return item(s) with the specified RFI status or statuses." - removed
Input schema / properties / filters__status / enumRemoved value: -[ - "open", - "closed", - "draft" -] - added
Input schema / properties / filters__sub_job_idAdded value: +{ + "description": "Query string parameter — return item(s) with the specified Sub Job ID or IDs. ID values may be sent as integers or numeric query-string values.", + "type": "string" +} - added
Input schema / properties / qAdded value: +{ + "description": "Query string parameter — alias for `search`. Search for RFIs by subject or number.", + "type": "string" +} - added
Input schema / properties / serializer_viewAdded value: +{ + "description": "Query string parameter — controls the RFI list item response shape. The default response schema shown\nfor this endpoint documents the standard list item shape; the values below\nreturn alternate shapes used by existing clie...", + "enum": [ + "ids_only", + "base_web_index", + "web_index", + "flatten_v0" + ], + "type": "string" +}
- Changed
list_roles_for_a_company_user1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_specification_configurations2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
list_specification_section_divisions - Changed
list_specification_section_terms1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_specification_sections1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
list_specification_sections_for_a_project_company - Added
list_specification_sections_for_a_project_company_v2_1 - Added
list_specification_sections_revisions_for_a_project_company - Added
list_specification_sections_revisions_for_a_project_company_v2_1 - Added
list_specification_sets_for_a_project - Changed
list_status_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_submittal_associated_attachments1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_submittal_types1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_task_item_categories2 fields changed- changed
Input schema / properties / view / descriptionPrevious value: -"Query string parameter — view to use when generating json. Defaults to normal"New value: +"Query string parameter — serialization view. Defaults to **`normal`**.\n\n- **`ids_only`** — JSON array of category IDs (integers); pagination headers apply.\n- **`compact`** / **`normal`** — `id` and friendly `name`.\n- **`ex..." - changed
Input schema / properties / view / enumPrevious value: -[ - "ids_only", - "normal" -]New value: +[ + "ids_only", + "compact", + "normal", + "extended" +]
- Changed
list_task_item_comments1 field changed- added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — serialization view for each comment. Defaults to **`normal`** when omitted.\n\n- **`compact`** — core fields including `task_item_id` (no nested `created_by` / attachments metadata).\n- **`normal`** —...", + "enum": [ + "compact", + "normal", + "extended" + ], + "type": "string" +}
- Changed
list_task_items1 field changed- added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — serialization view for each task item in the list. When omitted, defaults to `normal`.\n\n- **`ids_only`** — JSON array of task item IDs (integers) only; pagination headers still apply.\n- **`compact`...", + "enum": [ + "ids_only", + "compact", + "normal", + "extended" + ], + "type": "string" +}
- Changed
list_timecard_entries_project16 fields changed- added
Input schema / properties / filters__approval_statusAdded value: +{ + "description": "Query string parameter — return entries matching the specified approval status.", + "type": "string" +} - added
Input schema / properties / filters__billableAdded value: +{ + "description": "Query string parameter — return entries matching billable state.", + "type": "string" +} - added
Input schema / properties / filters__cost_code_idAdded value: +{ + "description": "Query string parameter — return entries matching the specified cost code ID.", + "type": "number" +} - added
Input schema / properties / filters__daily_log_header_idAdded value: +{ + "description": "Query string parameter — return entries matching the specified daily log header ID.", + "type": "number" +} - added
Input schema / properties / filters__dateAdded value: +{ + "description": "Query string parameter — filter by date. Accepts a single date (YYYY-MM-DD) or a date range (YYYY-MM-DD...YYYY-MM-DD).", + "type": "string" +} - added
Input schema / properties / filters__idAdded value: +{ + "description": "Query string parameter — return entries matching the specified entry ID(s).", + "items": {}, + "type": "array" +} - added
Input schema / properties / filters__location_idAdded value: +{ + "description": "Query string parameter — return entries matching the specified location ID.", + "type": "number" +} - added
Input schema / properties / filters__login_information_idAdded value: +{ + "description": "Query string parameter — return entries matching the specified login information ID(s).", + "type": "string" +} - added
Input schema / properties / filters__origin_idAdded value: +{ + "description": "Query string parameter — return entries matching the specified origin ID.", + "type": "string" +} - added
Input schema / properties / filters__searchAdded value: +{ + "description": "Query string parameter — text search filter for legacy search behavior.", + "type": "string" +} - added
Input schema / properties / filters__sub_job_idAdded value: +{ + "description": "Query string parameter — return entries matching the specified sub job ID.", + "type": "number" +} - added
Input schema / properties / filters__timecard_time_type_idAdded value: +{ + "description": "Query string parameter — return entries matching the specified timecard time type ID.", + "type": "number" +} - added
Input schema / properties / filters__updated_atAdded value: +{ + "description": "Query string parameter — return entries updated within the specified datetime/date range. Formats: YYYY-MM-DD...YYYY-MM-DD or YYYY-MM-DDTHH:MM:SSZ...YYYY-MM-DDTHH:MM:SSZ.", + "type": "string" +} - added
Input schema / properties / filters__wbs_code_idAdded value: +{ + "description": "Query string parameter — return entries matching the specified WBS code ID.", + "type": "number" +} - added
Input schema / properties / filters__work_classification_idAdded value: +{ + "description": "Query string parameter — return entries matching the specified work classification ID.", + "type": "number" +} - added
Input schema / properties / serializer_viewAdded value: +{ + "description": "Query string parameter — changes what fields are included in the response.", + "enum": [ + "daily_log", + "extended", + "extended_daily_log", + "ids_only" + ], + "type": "string" +}
- Changed
list_timecard_time_types_company1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_tools_enabled_for_workflows2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
list_unit_of_measure_categories1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_units_of_measure3 fields changed- added
Input schema / properties / filters__idAdded value: +{ + "description": "Query string parameter — restrict results to UOMs with one or more matching IDs. Example: `filters[id]=[101,102]`.", + "items": {}, + "type": "array" +} - added
Input schema / properties / filters__updated_atAdded value: +{ + "description": "Query string parameter — return item(s) within a specific updated at iso8601 datetime range", + "type": "string" +} - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — serialization view. When set to `ids_only`, the response body is a JSON array of integer Unit of Measure IDs (pagination headers still apply). Omit for the default view (full UOM objects grouped by...", + "enum": [ + "ids_only" + ], + "type": "string" +}
- Added
list_uom_categories_for_project_bids - Added
list_user_filter_options_company - Added
list_user_filter_options_project - Added
list_user_permissions_company - Added
list_user_permissions_project - Changed
list_watcher_filter_options1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_webhooks_deliveries1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_webhooks_hooks1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_webhooks_resources1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_webhooks_resources_api_versions1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_webhooks_triggers1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
list_work_order_contract_detail_line_items1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Added
list_work_scopes - Added
list_workflow_bulk_replace_requests - Changed
list_workflow_instances_company3 fields changed- changed
Input schema / properties / cursor / descriptionPrevious value: -"Query string parameter — cursor location where the returned list of items are before or after this cursor location."New value: +"Query string parameter — cursor location where the returned list of items are before or after this cursor location. Cursor pagination is used by default. Cannot be combined with the `page` parameter." - added
Input schema / properties / include_internalAdded value: +{ + "description": "Query string parameter — include internal workflow instances when true. Defaults to false when omitted.", + "type": "boolean" +} - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Query string parameter — page number for page-based pagination. When provided, page-based pagination is used instead of the default cursor pagination. Cannot be combined with the `cursor` parameter."
- Changed
list_workflow_instances_project3 fields changed- changed
Input schema / properties / cursor / descriptionPrevious value: -"Query string parameter — cursor location where the returned list of items are before or after this cursor location."New value: +"Query string parameter — cursor location where the returned list of items are before or after this cursor location. Cursor pagination is used by default. Cannot be combined with the `page` parameter." - added
Input schema / properties / include_internalAdded value: +{ + "description": "Query string parameter — include internal workflow instances when true. Defaults to false when omitted.", + "type": "boolean" +} - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Query string parameter — page number for page-based pagination. When provided, page-based pagination is used instead of the default cursor pagination. Cannot be combined with the `cursor` parameter."
- Changed
list_workflow_presets_company1 field changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -}
- Changed
list_workflow_presets_project1 field changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -}
- Changed
lists_the_app_and_tool_level_permissions_for_the_user2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
modify_markups3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project" - changed
Input schema / properties / viewer_doc_id / descriptionPrevious value: -"URL path parameter — unique identifier of the viewer doc"New value: +"URL path parameter — unique identifier of the viewer document"
- Added
partially_updates_a_line_item_on_an_inter_project_transfer - Added
partially_updates_an_inter_project_transfer_header - Changed
patch_company_role2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"JSON request body field — unique identifier of the Company Settings resource"New value: +"URL path parameter — unique identifier for the resource." - changed
Input schema / requiredPrevious value: -[ - "company_id" -]New value: +[ + "company_id", + "id" +]
- Added
preview_asset_deletion_company - Added
preview_asset_deletion_project - Added
project_folder_and_file_index_company_scoped - Added
project_markup_indicators_by_items - Added
publish_drawing_revisions - Added
recycle_materials_in_bulk - Added
recycles_a_direct_issue_document_soft_delete - Added
recycles_a_material - Added
recycles_a_material_requirement - Added
recycles_a_receipt - Added
recycles_a_shipment_by_marking_it_as_recycled - Added
recycles_a_transfer_document - Added
recycles_an_adjustment_document - Added
recycles_an_inter_project_transfer_document - Added
refresh_a_workflow_instance_company - Added
refresh_a_workflow_instance_project - Added
remove_existing_labels_to_specified_resources - Added
remove_project_from_group - Added
reopen_checklist_inspection - Added
resolve_scene_id_to_bim_model_id_for_viewpoint_deep_linking - Changed
respond_to_a_workflow_instance_company1 field changed- added
Input schema / properties / Idempotency-TokenAdded value: +{ + "description": "JSON request body field — unique idempotent token", + "type": "string" +}
- Changed
respond_to_a_workflow_instance_project1 field changed- added
Input schema / properties / Idempotency-TokenAdded value: +{ + "description": "JSON request body field — unique idempotent token", + "type": "string" +}
- Changed
restart_a_workflow_instance_company1 field changed- added
Input schema / properties / restart_modeAdded value: +{ + "description": "JSON request body field — controls how the new workflow instance is configured. `defaults` uses the current company/project preset configuration. `current_configuration` uses the terminated instance's configuration (assigne...", + "enum": [ + "defaults", + "current_configuration" + ], + "type": "string" +}
- Changed
restart_a_workflow_instance_project1 field changed- added
Input schema / properties / restart_modeAdded value: +{ + "description": "JSON request body field — controls how the new workflow instance is configured. `defaults` uses the current company/project preset configuration. `current_configuration` uses the terminated instance's configuration (assigne...", + "enum": [ + "defaults", + "current_configuration" + ], + "type": "string" +}
- Added
restore_a_soft_deleted_coordination_issue_rest_v2_0 - Added
restore_environmental - Added
restore_materials_in_bulk - Changed
retrieve_a_line_item_by_id_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
retrieve_a_line_item_by_id_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
retrieve_a_line_item_group_by_id_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
retrieve_a_line_item_group_by_id_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
retrieve_a_list_of_markups1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
retrieve_a_note_by_id_in_the_project_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
retrieve_a_note_by_id_in_the_project_company_v2_02 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
retrieve_a_project_proposal_by_id_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
retrieve_a_project_proposal_by_id_company_v2_02 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
retrieve_a_single_webhook_for_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
retrieve_a_single_webhook_for_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
retrieve_details_for_the_markup2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Removed
retrieve_environmental - Added
retrieve_pre_processed_file_metadata_company_scope_v2 - Added
retrieve_pre_processed_file_metadata_project_scope_v2 - Changed
retrieve_recycled_action1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the recycled incident action to restore."
- Added
retrieve_thumbnails_for_a_file_company_scope - Added
retrieve_thumbnails_for_a_file_project_scope - Added
retrieve_thumbnails_for_multiple_files_company_scope - Added
retrieve_thumbnails_for_multiple_files_project_scope - Added
retrieves_recycled_resources_matching_the_specified_filter - Changed
retrieves_the_status_of_the_asyncronous_job_that_a_bulk_users2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
return_a_filter2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
return_a_list_of_all_submittals3 fields changed- added
Input schema / properties / filters__sent_dateAdded value: +{ + "description": "Query string parameter — array of dates (date range). Returns item(s) where an approver's sent date falls within the specified dates. A single date is also accepted. Use \"NULL\" to filter for submittals with no sent date. s...", + "items": {}, + "type": "array" +} - added
Input schema / properties / filters__workflow_stepAdded value: +{ + "description": "Query string parameter — array of workflow step numbers. Returns submittal(s) currently on one of the given steps. A single step number is also accepted. Use \"NULL\" to filter for submittals with no workflow step.", + "items": {}, + "type": "array" +} - removed
Input schema / properties / sort / enumRemoved value: -[ - "specification_section", - "number", - "title", - "type", - "status", - "responsible_contractor", - "submit_by", - "received_from", - "received_date", - "due_date", - "distributed_at", - "submittal_package", - "anticipated_delivery_date" -]
- Changed
return_a_pdf_template_config2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
return_company_schedule_summary2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
returns_a_paginated_list_of_labels_for_the_specified_company - Changed
returns_avatar_of_the_current_user2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
returns_specific_template2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Removed
revoke_token - Changed
save_markups3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project" - changed
Input schema / properties / viewer_doc_id / descriptionPrevious value: -"URL path parameter — unique identifier of the viewer doc"New value: +"URL path parameter — unique identifier of the viewer document"
- Changed
save_stamp2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — the unique identifier of the company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — the unique identifier of the project"New value: +"URL path parameter — unique identifier of the project"
- Added
search_purchase_order_lines_linked_to_a_shipment - Removed
set_current_project_company - Added
sets_a_modifier_on_shipment_line_items - Changed
show_a_bid_within_a_company3 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - changed
Input schema / requiredPrevious value: -[ - "id", - "company_id" -]New value: +[ + "company_id", + "id" +]
- Changed
show_a_bid_within_a_project3 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - changed
Input schema / requiredPrevious value: -[ - "id", - "project_id" -]New value: +[ + "project_id", + "id" +]
- Changed
show_a_budgeted_production_quantity2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_a_commitment_contract2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_a_company_inspection_template_item_evidence_configuration2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_a_compliance_document_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_a_compliance_document_project_v1_02 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_a_coordination_issue_rest_v2_04 fields changed- added
Input schema / properties / include_deletedAdded value: +{ + "description": "Query string parameter — when `true`, also searches soft-deleted issues. Requires `view_deleted_coordination_issue` permission.", + "enum": [ + "true" + ], + "type": "string" +} - changed
Input schema / properties / included / descriptionPrevious value: -"Query string parameter — comma-separated field names to include (see list endpoint)."New value: +"Query string parameter — comma-separated field names to include (same as list endpoint; e.g. `is_private`, `assignee`)." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_a_crew2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_a_inspection_item_signature_request2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_a_meeting_template2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_a_project_inspection_template_item_evidence_configuration2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_a_signature_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_a_signature_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_a_signature_project_v1_02 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_a_timesheet2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_accident_logs2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_action3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the incident action." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_action_plan2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_action_plan_approver_signature2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_action_plan_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_action_plan_item_assignee2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_action_plan_item_assignee_signature2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_action_plan_receiver_signature2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_action_plan_reference2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_action_plan_section2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_action_plan_template_approver2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_action_plan_template_receiver2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_action_plan_test_record_request2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_action_plan_verification_method2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_actual_production_quantity2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
show_advanced_export_options_for_external_rfi - Changed
show_affliction_type3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the affliction type." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_all_commitment_change_order_batches2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_all_commitment_change_orders2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_all_prime_change_order_batches2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_all_prime_change_orders2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_alternative_response_set2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_an_async_job_for_a_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_an_equipment_category2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_an_equipment_log2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_an_equipment_make2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_an_equipment_model2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_an_equipment_type2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_an_individual_managed_equipment_maintenance_log_attachment2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_an_individual_time_and_material_attachment2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_an_project_equipment_log2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_app_configuration2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_app_installation2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
show_asset_by_code_company - Added
show_asset_by_code_project - Added
show_asset_company - Added
show_asset_project - Added
show_attachment_company - Added
show_attachment_project - Changed
show_bid_package_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_bid_package_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
show_bid_within_a_bid_package - Removed
show_bids_within_a_bid_package - Changed
show_billing_period_for_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_bim_file2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_bim_file_extraction2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_bim_geometry_file_bundle2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_bim_level2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_bim_model2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_bim_model_revision2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_bim_model_revision_plan2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_bim_plan2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_bim_viewpoint2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_budget_line_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_budget_meta_data2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_budget_modification2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_calendar_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_call_logs2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_change_event2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_change_history2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_change_order_package2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_change_order_request4 fields changed- added
Input schema / properties / filters__include_deletedAdded value: +{ + "description": "Query string parameter — use 'only' for only deleted resources. Use 'with' for deleted and undeleted resources.", + "enum": [ + "only", + "with" + ], + "type": "string" +} - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — parameter affecting the level of detail returned. The `extended` view includes the total tax amount for the Change Order Request.", + "enum": [ + "extended" + ], + "type": "string" +}
- Changed
show_checklist2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_checklist_comment2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_checklist_inspection2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_checklist_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_checklist_item_response2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_checklist_item_type2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_checklist_schedule2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_checklist_section2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_checklist_signature_request2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_checklist_template2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_classification_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_classification_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_commitment_change_order2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_commitment_change_order_batch2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_commitment_change_order_line_item3 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — the view to use for the response. Use `extended` to include `change_event_line_item` and `external_data` (ERP origin fields).\nAn invalid value returns a 400 error.", + "enum": [ + "default", + "extended" + ], + "type": "string" +}
- Changed
show_commitment_contract3 fields changed- added
Input schema / properties / filters__include_deletedAdded value: +{ + "description": "Query string parameter — use 'only' to return only deleted resources. Use 'with' to return deleted and undeleted resources.", + "enum": [ + "only", + "with" + ], + "type": "string" +} - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_commitment_contract_line_item3 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — the view to use for the response. Use `extended` to include `change_event_line_item` and `external_data` (ERP origin fields).\nAn invalid value returns a 400 error.", + "enum": [ + "default", + "extended" + ], + "type": "string" +}
- Changed
show_commitment_contract_summary2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_communication2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_communication_thread2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_action_plan_template2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_action_plan_template_item_assignee2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_action_plan_template_reference2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_action_plan_template_test_record_request2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_action_plan_type2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_checklist_section2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_checklist_template2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_configuration2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_file2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_file_version2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_folder9 fields changed- changed
Input schema / properties / company_id / typePrevious value: -"number"New value: +"string" - changed
Input schema / properties / exclude_files / descriptionPrevious value: -"Query string parameter — exclude children Files from results"New value: +"Query string parameter — exclude child files from the response." - changed
Input schema / properties / exclude_folders / descriptionPrevious value: -"Query string parameter — exclude children Folders from results"New value: +"Query string parameter — exclude child folders from the response." - changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Documents resource"New value: +"URL path parameter — unique identifier for the resource." - changed
Input schema / properties / id / typePrevious value: -"number"New value: +"string" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Number of items per page (default: 100, max: 100)"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - added
Input schema / properties / show_latest_file_version_onlyAdded value: +{ + "description": "Query string parameter — return only the latest file version per file.", + "type": "boolean" +} - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — response projection. Supports legacy `web_normal` requests for compatibility with v1 folder-show flows.", + "enum": [ + "normal", + "web_normal", + "sync_compact" + ], + "type": "string" +}
- Changed
show_company_form_template2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_form_template_from_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_inspection_template_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_inspection_template_item_reference2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_insurance2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_level_email_communication2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_office2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_security_settings2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_segment_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_upload2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_user_v1_32 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_user_v1_3_22 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_vendor_insurance2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_company_wbs_segment2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_compliance_information_for_a_purchase_order_contract2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_compliance_information_for_a_work_order_contract2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_configurable_field_set4 fields changed- changed
Input schema / properties / company_id / typePrevious value: -"number"New value: +"string" - changed
Input schema / properties / id / typePrevious value: -"number"New value: +"string" - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_contract_payment2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_contributing_behavior3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — contributing Behavior ID"New value: +"URL path parameter — unique identifier of the contributing behavior. Returned as id in List and Show responses." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_contributing_condition3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — contributing Condition ID"New value: +"URL path parameter — unique identifier of the contributing condition. Returned as id in List and Show responses." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_coordination_issue2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_coordination_issue_count_by_status2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_coordination_issue_in_recycle_bin2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_coordination_issue_workflow_issue2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_correspondence_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_correspondence_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_cost_code2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_current_company_user2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Removed
show_custom_field_definition - Added
show_custom_field_definition_company - Added
show_custom_field_definition_v1_0 - Changed
show_custom_field_lov_entry2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Removed
show_custom_field_metadatum - Added
show_custom_field_metadatum_company - Added
show_custom_field_metadatum_v1_0 - Changed
show_custom_fields_section2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_daily_construction_report_logs2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_delay_logs2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_delivery_log2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_department2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_detail_for_requisition_subcontractor_invoice1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
show_direct_cost_item3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Direct Costs resource"New value: +"URL path parameter — unique identifier of the Project Level Direct Costs resource" - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_direct_cost_line_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
show_document_upload - Changed
show_drawing_revision2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_drawing_upload2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_dumpster_logs2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Removed
show_early_pay_program - Changed
show_email_communication2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_environmental3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the environmental record. Returned as id in List and Show responses." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_equipment_change_history2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_equipment_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_equipment_logs2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_equipment_maintenance_log2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_equipment_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_equipment_timecard_entry_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
show_external_rfi - Added
show_fieldset - Changed
show_filing_type3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the filing type. Use the id from the List Filing Types response." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_first_prime_contract2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_form2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_generic_tool_item_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_generic_tool_item_v1_02 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_gps_position2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_harm_source3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the harm source. Use the id from the List Harm Sources response." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_hazard3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the hazard. Use the id from the List Hazards response." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_image2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_image_category2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_incident3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the incident. Use the `id` from the List or Create Incidents response." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_incident_action_type3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — incident Action Type ID"New value: +"URL path parameter — unique identifier of the incident action type." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_incident_alert3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the incident alert." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_incident_alert_recipient3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — incident Alert Recipient's User ID"New value: +"URL path parameter — user ID of the incident alert recipient." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_incident_severity_level3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — incident Severity Level ID"New value: +"URL path parameter — unique identifier of the incident severity level. Use the `id` from the List Severity Levels response." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_injury2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_inspection_logs2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_inspection_type2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_instruction2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_instruction_type2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_item_response_set2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_item_response_set_response2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_line_item_type2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_link2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_location2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_lookahead2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_manpower_logs2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_material2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_meeting_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_meeting_v1_02 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_near_miss2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_new_change_event2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_next_available_number_for_observation_items2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_notes_logs2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_observation_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_or_create_document_markup_downloadable_pdf3 fields changed- changed
Input schema / properties / attachment_id / descriptionPrevious value: -"JSON request body field — unique identifier of the attachment"New value: +"JSON request body field — iD of the ProstoreFile (attachment) being marked up. Matches the `attachment_id` shown in the document viewer URL." - changed
Input schema / properties / project_id / descriptionPrevious value: -"JSON request body field — unique identifier for the Procore project"New value: +"JSON request body field — iD of the project that owns the item and its attachment." - changed
Input schema / properties / version_datetime / descriptionPrevious value: -"Query string parameter — version Datetime of the Document"New value: +"Query string parameter — optional ISO 8601 timestamp (UTC) used to retrieve the state of the document and its markup as of that point in time. Omit to retrieve the current version."
- Changed
show_payment_application_owner_invoice2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Removed
show_payments_beneficiary - Changed
show_permission_manifest2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_plan_revision_logs2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_potential_change_order_line_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_potential_change_orders2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_prime_change_order2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_prime_change_order_batch2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_prime_change_order_line_item4 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - changed
Input schema / properties / prime_change_order_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Prime Change Order."New value: +"URL path parameter — unique identifier for the Prime Change Order. See `GET /rest/v1.0/projects/{project_id}/prime_change_orders`.\n" - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — the view to use for the response. Use `extended` to include `change_event_line_item` and `external_data` (ERP origin fields).\nAn invalid value returns a 400 error.", + "enum": [ + "default", + "extended" + ], + "type": "string" +}
- Changed
show_prime_contract_line_item_project3 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — the view to use for the response. Use `extended` to include `external_data` (ERP origin fields).\nAn invalid value returns a 400 error.", + "enum": [ + "default", + "extended" + ], + "type": "string" +}
- Changed
show_prime_contract_line_item_v1_02 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_prime_contract_project3 fields changed- added
Input schema / properties / filters__include_deletedAdded value: +{ + "description": "Query string parameter — use 'only' to return only deleted resources. Use 'with' to return deleted and undeleted resources.", + "enum": [ + "only", + "with" + ], + "type": "string" +} - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_prime_contract_summary2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_prime_contract_v1_02 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_productivity_logs2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_program2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_action_plan_template_reference2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_bid_type2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_checklist_template2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_date_v1_02 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_date_v1_0_22 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_distribution_group_v1_02 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_distribution_group_v1_0_22 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_equipment_maintenance_log2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_file2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_file_version2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_folder2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
show_project_folder_company_scoped - Changed
show_project_inspection_template_item_reference2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_insurance2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_location2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_owner_type2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_region2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_schedule_settings2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_stage2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_type2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_upload2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_user2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_vendor2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_vendor_insurance2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_project_wbs_segment2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_property_damage3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the property damage record. Use the `id` from the List or Create Property Damages response." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_punch_assignment2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_punch_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_punch_item_type2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_purchase_order_contract2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_purchase_order_contract_detail_line_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_purchase_order_contract_line_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_quantity_logs2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recent_timecard_entry_wbs_code_ids_deprecated1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
show_recycled_action3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the recycled incident action." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_action_plan2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_action_plan_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_action_plan_item_assignee2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_action_plan_reference2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_action_plan_section2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_action_plan_template_approver2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_action_plan_template_items2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_action_plan_template_receiver2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_action_plan_template_section2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_action_plan_test_record2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_action_plan_test_record_request2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_checklist_inspection2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_company_action_plan_template2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_company_action_plan_template_items_assignee2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_company_action_plan_template_reference2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_company_action_plan_template_test_record_request2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_company_checklist_template2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_company_form_template2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_environmental3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the recycled environmental record." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_incident3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the incident. Use the `id` from the List or Create Incidents response." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_injury2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_near_miss2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_observation2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_project_action_plan_template_reference2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_project_form2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_property_damage3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the property damage record. Use the `id` from the List or Create Property Damages response." - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_recycled_witness_statement2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_requisition_subcontractor_invoice4 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - changed
Input schema / properties / view / descriptionPrevious value: -"Query string parameter — specifies which view (which attributes) of the resource is going to be present in the response."New value: +"Query string parameter — specifies which view (which attributes) of the resource is going to be present in the response. The `header_only` view is intended for split header / line-items rendering on the Subcontractor Invoi..." - changed
Input schema / properties / view / enumPrevious value: -[ - "default", - "extended", - "items", - "action_policy" -]New value: +[ + "default", + "extended", + "items", + "action_policy", + "header_only" +]
- Changed
show_requisition_subcontractor_invoice_change_order_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_requisition_subcontractor_invoice_contract_detail_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_requisition_subcontractor_invoice_contract_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_resource_assignment2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_resource_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_resource_v1_02 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_response2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_rfi2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_rfi_in_pdf_format2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_rfi_reply2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_rfq2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_rfq_quote2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_rfq_response2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_rounding_configuration2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_safety_violation_logs2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Removed
show_specification_section_revision - Added
show_specification_section_revision_project - Added
show_specification_section_revision_v1_0 - Changed
show_specification_set2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_standard_cost_code2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_standard_cost_code_list2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_sub_job2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_submittal_in_pdf_format2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_submittal_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_submittal_v1_02 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_task2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_task_item3 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — serialization view for the task item. When omitted, defaults to **`extended`** for this API version.\n\n- **`compact`** — `id` and `title` only.\n- **`normal`** — standard shape without extended-only ...", + "enum": [ + "compact", + "normal", + "extended" + ], + "type": "string" +}
- Changed
show_tax_code2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_tax_type2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_the_schedule_integration_type_for_a_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_time_and_material_entry2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_time_and_material_equipment_log2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_time_and_material_notification2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_time_and_material_timecard2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_timecard_entry2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_timecard_entry_change_history_company1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
show_timecard_entry_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_timecard_entry_project3 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -} - added
Input schema / properties / serializer_viewAdded value: +{ + "description": "Query string parameter — changes which fields are included in the serialized response.\n- `extended_daily_log` - Returns extended fields plus Daily Log segment associations\n- Default (not specified) - Returns the standard e...", + "enum": [ + "extended_daily_log" + ], + "type": "string" +}
- Changed
show_timesheet_approval_status_filters1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
show_timesheet_billable_filters1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
show_timesheet_created_by_filters1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
show_timesheet_crews_filters1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
show_timesheet_department_filters1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
show_timesheet_employee_filters1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
show_timesheet_employee_id_filters1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
show_timesheet_location_filters1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
show_timesheet_office_filters1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
show_timesheet_project_filters1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
show_timesheet_region_filters1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
show_timesheet_sub_job_filters1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
show_timesheet_time_type_filters1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
show_timesheet_to_budget_configuration2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_timesheet_wbs_code_filters1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
show_timesheet_work_classification_filters1 field changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
- Changed
show_todo2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_trade2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_unit_of_measure2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_user_info2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_visitor_logs2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_waste_logs2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_weather_log2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_weather_logs2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_witness_statement2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_work_activity2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_work_logs2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_work_order_contract2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_work_order_contract_detail_line_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_work_order_contract_line_item2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
show_workflow_activity_history2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
show_workflow_bulk_replace_request - Changed
show_workflow_instance2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
stop_temporary_workflow_bulk_replace_request - Changed
sync_direct_cost_line_items1 field changed- changed
Input schema / properties / updates / descriptionPrevious value: -"JSON request body field — the updates for this Direct Costs operation"New value: +"JSON request body field — the updates for this Project Level Direct Costs operation"
- Added
sync_material_requirements_headers - Added
sync_material_requirements_lines - Changed
sync_projects1 field changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"JSON request body field — the company identifier the project is associated with.\nRequired only if `company_id` is not included in the request's query parameters."New value: +"Query string parameter — unique identifier for the company."
- Added
sync_purchase_order_headers - Added
sync_purchase_order_lines - Changed
sync_sub_jobs1 field changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"JSON request body field — unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
sync_tasks1 field changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"JSON request body field — the ID of the Project the Tasks belongs to"New value: +"Query string parameter — unique identifier for the project."
- Changed
sync_units_of_measure2 fields changed- changed
Input schema / properties / deletes / descriptionPrevious value: -"JSON request body field — the deletes for this Units of Measure operation"New value: +"JSON request body field — iDs of custom UOMs to delete. Standard (Procore-provided) UOMs cannot be deleted via this endpoint and will be reported in the response `errors` array." - changed
Input schema / properties / updates / descriptionPrevious value: -"JSON request body field — the updates for this Units of Measure operation"New value: +"JSON request body field — uOMs to create or update. Omit `id` to create a new custom UOM; supply `id` to update an existing UOM. For Procore-provided standard UOMs, only `name` can be updated; `uom_category_id` changes are ..."
- Added
syncs_materials - Added
trigger_pre_processing_for_a_file_company_scope_v2 - Added
trigger_pre_processing_for_a_file_project_scope_v2 - Added
triggers_a_recalculation_of_cached_data_for_the_specified - Added
unassign_sensors_from_materials - Changed
update_a_bid_from_a_bid_package1 field changed- added
Input schema / properties / vendor_idAdded value: +{ + "description": "JSON request body field — vendor ID (optional, nullable for PCN-based bidders)", + "type": "number" +}
- Changed
update_a_bid_within_a_company1 field changed- changed
Input schema / requiredPrevious value: -[ - "id", - "company_id" -]New value: +[ + "company_id", + "id" +]
- Changed
update_a_budgeted_production_quantity2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"JSON request body field — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / requiredPrevious value: -[ - "id" -]New value: +[ + "project_id", + "id" +]
- Changed
update_a_coordination_issue_rest_v2_016 fields changed- removed
Input schema / properties / assignee_idRemoved value: -{ - "description": "JSON request body field — unique identifier of the assignee", - "type": "string" -} - removed
Input schema / properties / attachment_upload_uuidsRemoved value: -{ - "description": "JSON request body field — additional uploads to attach (same pipeline as create).", - "items": {}, - "type": "array" -} - removed
Input schema / properties / bim_file_idRemoved value: -{ - "description": "JSON request body field — unique identifier of the bim file", - "type": "string" -} - removed
Input schema / properties / bim_model_idRemoved value: -{ - "description": "JSON request body field — unique identifier of the bim model", - "type": "string" -} - changed
Input schema / properties / company_id / descriptionPrevious value: -"JSON request body field — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier for the company." - removed
Input schema / properties / creation_sourceRemoved value: -{ - "description": "JSON request body field — the creation source for this Coordination Issues operation", - "type": "string" -} - removed
Input schema / properties / descriptionRemoved value: -{ - "description": "JSON request body field — the description for this Coordination Issues operation", - "type": "string" -} - removed
Input schema / properties / due_dateRemoved value: -{ - "description": "JSON request body field — due date in YYYY-MM-DD format", - "type": "string" -} - removed
Input schema / properties / issue_typeRemoved value: -{ - "description": "JSON request body field — the issue type for this Coordination Issues operation", - "type": "string" -} - removed
Input schema / properties / location_idRemoved value: -{ - "description": "JSON request body field — unique identifier of the location", - "type": "string" -} - removed
Input schema / properties / originRemoved value: -{ - "additionalProperties": {}, - "description": "JSON request body field — optional origin metadata stored with the issue when created or updated.", - "type": "object" -} - removed
Input schema / properties / priorityRemoved value: -{ - "description": "JSON request body field — the priority for this Coordination Issues operation", - "type": "string" -} - changed
Input schema / properties / project_id / descriptionPrevious value: -"JSON request body field — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier for the project." - removed
Input schema / properties / titleRemoved value: -{ - "description": "JSON request body field — the title for this Coordination Issues operation", - "type": "string" -} - removed
Input schema / properties / trade_idRemoved value: -{ - "description": "JSON request body field — unique identifier of the trade", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "id" -]New value: +[ + "company_id", + "project_id", + "id" +]
- Added
update_a_document_snapshot_on_a_coordination_issue_rest_v2_0 - Changed
update_a_maintenance_record10 fields changed- removed
Input schema / properties / equipment_id / additionalPropertiesRemoved value: -{} - changed
Input schema / properties / equipment_id / descriptionPrevious value: -"JSON request body field — unique identifier of the equipment"New value: +"URL path parameter — unique identifier of the equipment" - changed
Input schema / properties / equipment_id / typePrevious value: -"object"New value: +"string" - changed
Input schema / properties / issue / descriptionPrevious value: -"JSON request body field — the issue for this Equipment operation"New value: +"JSON request body field — description of the maintenance issue." - changed
Input schema / properties / notes / descriptionPrevious value: -"JSON request body field — the notes for this Equipment operation"New value: +"JSON request body field — notes about the maintenance." - removed
Input schema / properties / type / additionalPropertiesRemoved value: -{} - changed
Input schema / properties / type / descriptionPrevious value: -"JSON request body field — the type for this Equipment operation"New value: +"JSON request body field — the type of maintenance." - added
Input schema / properties / type / enumAdded value: +[ + "PLANNED", + "UNPLANNED" +] - changed
Input schema / properties / type / typePrevious value: -"object"New value: +"string" - changed
Input schema / requiredPrevious value: -[ - "maintenance_id", - "company_id" -]New value: +[ + "maintenance_id", + "equipment_id", + "company_id" +]
- Changed
update_a_maintenance_record_project10 fields changed- removed
Input schema / properties / equipment_id / additionalPropertiesRemoved value: -{} - changed
Input schema / properties / equipment_id / descriptionPrevious value: -"JSON request body field — unique identifier of the equipment"New value: +"URL path parameter — unique identifier of the equipment" - changed
Input schema / properties / equipment_id / typePrevious value: -"object"New value: +"string" - changed
Input schema / properties / issue / descriptionPrevious value: -"JSON request body field — the issue for this Equipment operation"New value: +"JSON request body field — description of the maintenance issue." - changed
Input schema / properties / notes / descriptionPrevious value: -"JSON request body field — the notes for this Equipment operation"New value: +"JSON request body field — notes about the maintenance." - removed
Input schema / properties / type / additionalPropertiesRemoved value: -{} - changed
Input schema / properties / type / descriptionPrevious value: -"JSON request body field — the type for this Equipment operation"New value: +"JSON request body field — the type of maintenance." - added
Input schema / properties / type / enumAdded value: +[ + "PLANNED", + "UNPLANNED" +] - changed
Input schema / properties / type / typePrevious value: -"object"New value: +"string" - changed
Input schema / requiredPrevious value: -[ - "maintenance_id", - "project_id", - "company_id" -]New value: +[ + "maintenance_id", + "equipment_id", + "project_id", + "company_id" +]
- Changed
update_a_manual_forecast_line_item1 field changed- added
Input schema / properties / asyncAdded value: +{ + "description": "JSON request body field — request asynchronous processing. When `true`, Budget Columns 2.0 must be enabled or the request will return `422`. On success returns `202 Accepted` with a `receipt_id`.", + "type": "boolean" +}
- Changed
update_a_note_of_the_project_company1 field changed- changed
Input schema / properties / value / descriptionPrevious value: -"JSON request body field — the value for this Estimating operation"New value: +"JSON request body field — the content of the note."
- Changed
update_a_note_of_the_project_company_v2_01 field changed- changed
Input schema / properties / value / descriptionPrevious value: -"JSON request body field — the value for this Bid Board operation"New value: +"JSON request body field — the content of the note."
- Added
update_a_purchase_order - Changed
update_a_task_item_comment2 fields changed- changed
Input schema / properties / status / descriptionPrevious value: -"JSON request body field — the status of the task item at the time the comment.\nStandard users who are assigned to a task item cannot change the status to closed or void."New value: +"JSON request body field — the status of the task item at the time of the comment.\nStandard users who are assigned to a task item cannot change the status to closed or void." - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — serialization view for the updated comment (default **normal**).", + "enum": [ + "compact", + "normal", + "extended" + ], + "type": "string" +}
- Changed
update_a_time_and_material_equipment_log1 field changed- added
Input schema / properties / idle_quantityAdded value: +{ + "description": "JSON request body field — idle Quantity of Time And Material Equipment Log", + "type": "number" +}
- Changed
update_a_wbs_code1 field changed- added
Input schema / properties / default_uom_idAdded value: +{ + "description": "JSON request body field — iD of the Unit of Measure to set as the default for this WBS code. Pass null to remove the existing default. Part of the Units of Measure Validation beta.", + "type": "number" +}
- Changed
update_action9 fields changed- changed
Input schema / properties / action_type_id / descriptionPrevious value: -"JSON request body field — the ID of the Action Type"New value: +"JSON request body field — identifier of the action type to classify this action. Obtain valid IDs from GET /rest/v1.0/companies/{company_id}/incidents/action_types." - changed
Input schema / properties / description / descriptionPrevious value: -"JSON request body field — description of action taken in rich text form."New value: +"JSON request body field — description of action taken, in HTML rich-text format." - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"JSON request body field — drawing Revisions to attach to the response"New value: +"JSON request body field — array of drawing revision IDs to attach to this action." - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"JSON request body field — file Versions to attach to the response"New value: +"JSON request body field — array of file version IDs to attach to this action." - changed
Input schema / properties / form_ids / descriptionPrevious value: -"JSON request body field — forms to attach to the response"New value: +"JSON request body field — array of form IDs to attach to this action." - changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the incident action." - changed
Input schema / properties / image_ids / descriptionPrevious value: -"JSON request body field — images to attach to the response"New value: +"JSON request body field — array of image IDs to attach to this action." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"JSON request body field — the ID of the Incident"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"JSON request body field — uploads to attach to the response"New value: +"JSON request body field — array of upload identifiers (from the Uploads endpoint) to attach to this action."
- Changed
update_action_plan1 field changed- added
Input schema / properties / asset_idsAdded value: +{ + "description": "JSON request body field — asset IDs to be set on the Action Plan", + "items": {}, + "type": "array" +}
- Changed
update_advanced_forecasting_rows2 fields changed- added
Input schema / properties / asyncAdded value: +{ + "description": "JSON request body field — request asynchronous processing. When `true`, Budget Columns 2.0 must be enabled or the request will return `422`. On success returns `202 Accepted` with a single `receipt_id` that the client shoul...", + "type": "boolean" +} - added
Input schema / properties / budget_view_idAdded value: +{ + "description": "JSON request body field — unique identifier for the Budget View (also known as Budget Template). Required when column-based forecasting is enabled and the update changes forecasting data (period amounts/percentages, the cur...", + "type": "string" +}
- Changed
update_affliction_type2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the affliction type." - changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — the Name of the Affliction Type"New value: +"JSON request body field — display name for the affliction type. Required on create. Procore-provided (global) type names cannot be changed."
- Changed
update_all_company_segment_items1 field changed- changed
Input schema / properties / attributes / descriptionPrevious value: -"JSON request body field — the attributes for this Work Breakdown Structure operation"New value: +"JSON request body field — fields to apply to every selected segment item. For bulk **Cost types** status updates (when cost type deactivation is enabled), send **only** `status`; extra keys are rejected with **400 Bad Reque..."
- Changed
update_all_project_segment_items1 field changed- changed
Input schema / properties / attributes / descriptionPrevious value: -"JSON request body field — the attributes for this Work Breakdown Structure operation"New value: +"JSON request body field — fields to apply to every selected segment item. For bulk status-only operations, send only the properties supported for that segment type; unsupported keys may yield **400 Bad Request**."
- Added
update_an_attachments_metadata - Changed
update_an_estimate_line_item_of_the_proposal_company1 field changed- added
Input schema / properties / quantityAdded value: +{ + "description": "JSON request body field — quantity from the estimating table (manual entry). Updated when using estimating or takeoff tab.", + "type": "number" +}
- Changed
update_an_estimate_line_item_of_the_proposal_project1 field changed- added
Input schema / properties / quantityAdded value: +{ + "description": "JSON request body field — quantity from the estimating table (manual entry). Updated when using estimating or takeoff tab.", + "type": "number" +}
- Changed
update_an_project_equipment_log2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"JSON request body field — iD of the project the equipment was logged for"New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / requiredPrevious value: -[ - "id" -]New value: +[ + "project_id", + "id" +]
- Changed
update_app_configuration2 fields changed- added
Input schema / properties / applies_to_all_projectsAdded value: +{ + "description": "JSON request body field — apply the app configuration to all projects under a company ( if set to true, project_ids field must be blank )", + "type": "boolean" +} - added
Input schema / properties / applies_to_companyAdded value: +{ + "description": "JSON request body field — apply the app configuration to be available from company routes", + "type": "boolean" +}
- Removed
update_app_installation - Added
update_asset_company - Added
update_asset_project - Changed
update_assignees_and_workflow_manager_company1 field changed- added
Input schema / properties / individual_assigneesAdded value: +{ + "description": "JSON request body field — list of individual assignees per step", + "items": {}, + "type": "array" +}
- Changed
update_assignees_and_workflow_manager_project1 field changed- added
Input schema / properties / individual_assigneesAdded value: +{ + "description": "JSON request body field — list of individual assignees per step", + "items": {}, + "type": "array" +}
- Added
update_attachment_company - Added
update_attachment_project - Changed
update_bid_board_project1 field changed- added
Input schema / properties / office_idAdded value: +{ + "description": "JSON request body field — the unique identifier for the Procore office associated with the project. Use the Procore Company Offices endpoint to retrieve office IDs.", + "type": "string" +}
- Changed
update_commitment_change_order4 fields changed- removed
Input schema / properties / attachment_idsRemoved value: -{ - "description": "JSON request body field — existing attachments to preserve on the response", - "items": {}, - "type": "array" -} - removed
Input schema / properties / drawing_revision_idsRemoved value: -{ - "description": "JSON request body field — drawing Revisions to attach to the response", - "items": {}, - "type": "array" -} - added
Input schema / properties / request_for_quote_attachment_idsAdded value: +{ + "description": "JSON request body field — list of attachment IDs to attach. These must presently be associated with Request For Quotes (or their Quotes / Responses).", + "items": {}, + "type": "array" +} - added
Input schema / properties / revised_substantial_completion_dateAdded value: +{ + "description": "JSON request body field — revised substantial completion date, only supported for Prime Change Orders on single-tier projects.", + "type": "string" +}
- Changed
update_commitment_change_order_batch1 field changed- added
Input schema / properties / request_for_quote_attachment_idsAdded value: +{ + "description": "JSON request body field — list of attachment IDs to attach. These must presently be associated with Request For Quotes (or their Quotes / Responses).", + "items": {}, + "type": "array" +}
- Changed
update_commitment_change_order_line_item2 fields changed- changed
Input schema / properties / commitment_line_item_id / descriptionPrevious value: -"JSON request body field — iD of the commitment contract line item associated with this line item"New value: +"JSON request body field — iD of the commitment contract line item associated with this line item. For ERP-integrated projects, pass the string \"new\" to create a new zero-dollar line item on the parent commitment contract an..." - added
Input schema / properties / funding_rule_idAdded value: +{ + "description": "JSON request body field — iD of the funding rule associated with this line item. Funding Sources must be enabled at the project level. The rule must be ACTIVE and its currency must match the contract currency. Pass null to ...", + "type": "string" +}
- Changed
update_commitment_contract_line_item1 field changed- added
Input schema / properties / funding_rule_idAdded value: +{ + "description": "JSON request body field — iD of the funding rule associated with this line item. Funding Sources must be enabled at the project level. The rule must be ACTIVE and its currency must match the contract currency. Pass null to ...", + "type": "string" +}
- Changed
update_company_currency_configuration4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — integer ID of the Procore company. Obtainable from GET /rest/v1.0/companies. Identifies which company's currency configuration to act on." - changed
Input schema / properties / currency_display / descriptionPrevious value: -"JSON request body field — currency Display Options"New value: +"JSON request body field — how currency amounts should be rendered. 'symbol' renders with the locale currency glyph (e.g., $); 'code' renders with the ISO code (e.g., USD). Defaults to 'symbol' on first configuration. Omit t..." - removed
Input schema / properties / currency_iso_codeRemoved value: -{ - "description": "JSON request body field — the currency iso code for this Currency Configurations operation", - "type": "string" -} - changed
Input schema / properties / multicurrency_enabled / descriptionPrevious value: -"JSON request body field — whether multicurrency is enabled for the company"New value: +"JSON request body field — whether to enable multicurrency for the company. When true, projects under this company may be configured with their own currency and exchange rates. The first time you set this to true the company..."
- Changed
update_company_exchange_rates2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — integer ID of the Procore company whose exchange rates are being queried or modified. Obtainable from GET /rest/v1.0/companies." - changed
Input schema / properties / exchange_rates / descriptionPrevious value: -"JSON request body field — company exchange rates"New value: +"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."
- Added
update_company_level_context - Added
update_company_naming_standard_rule - Changed
update_company_segment_item1 field changed- added
Input schema / properties / default_uom_idAdded value: +{ + "description": "JSON request body field — iD of the Unit of Measure to set as the default for this Cost type (line item type) segment item. Pass null to remove the existing default. Part of the Units of Measure Validation beta.", + "type": "number" +}
- Changed
update_company_tag2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"JSON request body field — unique identifier for the company. NOTE - this is a Laborchart company ID."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / company_id / typePrevious value: -"number"New value: +"string"
- Changed
update_configurable_field_set11 fields changed- removed
Input schema / properties / categoryRemoved value: -{ - "description": "JSON request body field — category or observations_category_id are required and only needed when associating projects for an Observations Configurable Field Set. (0 = quality, 1 =safety, 2 = commissioning, 3 = warranty, 4 ...", - "enum": [ - "quality", - "safety", - "commissioning", - "warranty", - "work_to_complete" - ], - "type": "string" -} - changed
Input schema / properties / company_id / typePrevious value: -"number"New value: +"string" - added
Input schema / properties / configurable_field_setAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — configurable_field_set", + "type": "object" +} - added
Input schema / properties / custom_field_sectionsAdded value: +{ + "description": "JSON request body field — custom_field_sections", + "items": {}, + "type": "array" +} - removed
Input schema / properties / fieldsRemoved value: -{ - "additionalProperties": {}, - "description": "JSON request body field — all fields that make up the form of the class name.", - "type": "object" -} - changed
Input schema / properties / id / typePrevious value: -"number"New value: +"string" - removed
Input schema / properties / include_all_projectsRemoved value: -{ - "description": "JSON request body field — whether or not all projects selected", - "type": "boolean" -} - removed
Input schema / properties / nameRemoved value: -{ - "description": "JSON request body field — the name for this Custom - Configurable Tools operation", - "type": "string" -} - removed
Input schema / properties / observations_category_idRemoved value: -{ - "description": "JSON request body field — category or observations_category_id are required and only needed when associating projects for an Observations Configurable Field Set. (0 = quality, 1 =safety, 2 = commissioning, 3 = warranty, 4 ...", - "type": "number" -} - removed
Input schema / properties / project_idsRemoved value: -{ - "description": "JSON request body field — array of project identifiers", - "items": {}, - "type": "array" -} - changed
Input schema / requiredPrevious value: -[ - "company_id", - "id", - "name", - "fields" -]New value: +[ + "company_id", + "id", + "configurable_field_set" +]
- Changed
update_context2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Added
update_contract_compliance_document - Changed
update_contracts_invoice_configuration1 field changed- added
Input schema / properties / contract_invoicing_methodAdded value: +{ + "description": "JSON request body field — the invoicing method for the contract. Only accepted for commitments when simplified invoicing is enabled for the project or company; otherwise the value is ignored.", + "enum": [ + "progressive", + "simplified" + ], + "type": "string" +}
- Changed
update_contributing_behavior2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — contributing Behavior ID"New value: +"URL path parameter — unique identifier of the contributing behavior. Returned as id in List and Show responses." - changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — the Name of the Contributing Behavior"New value: +"JSON request body field — display name for the contributing behavior. Must be unique within the company. Names of Procore-provided contributing behaviors cannot be changed."
- Changed
update_contributing_condition2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — contributing Condition ID"New value: +"URL path parameter — unique identifier of the contributing condition. Returned as id in List and Show responses." - changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — the Name of the Contributing Condition"New value: +"JSON request body field — display name for the contributing condition. Must be unique within the company. Names of Procore-provided contributing conditions cannot be changed."
- Changed
update_cost_item1 field changed- changed
Input schema / properties / unit / descriptionPrevious value: -"JSON request body field — the unit of measurement for the cost item. (17 possible values)"New value: +"JSON request body field — the unit of measurement for the cost item. (18 possible values)"
- Added
update_custom_field_definition - Added
update_custom_field_metadatum - Changed
update_direct_cost_item1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Direct Costs resource"New value: +"URL path parameter — unique identifier of the Project Level Direct Costs resource"
- Changed
update_direct_cost_line_item5 fields changed- changed
Input schema / properties / amount / descriptionPrevious value: -"JSON request body field — the amount for this Direct Costs operation"New value: +"JSON request body field — the amount for this Project Level Direct Costs operation" - changed
Input schema / properties / description / descriptionPrevious value: -"JSON request body field — the description for this Direct Costs operation"New value: +"JSON request body field — the description for this Project Level Direct Costs operation" - changed
Input schema / properties / direct_cost_id / descriptionPrevious value: -"JSON request body field — unique identifier of the direct cost"New value: +"URL path parameter — unique identifier of the direct cost" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"JSON request body field — the origin data for this Direct Costs operation"New value: +"JSON request body field — the origin data for this Project Level Direct Costs operation" - changed
Input schema / requiredPrevious value: -[ - "project_id", - "id" -]New value: +[ + "project_id", + "direct_cost_id", + "id" +]
- Removed
update_early_pay_program - Changed
update_environmental6 fields changed- changed
Input schema / properties / affected_company_id / descriptionPrevious value: -"JSON request body field — the ID of the Affected Company"New value: +"JSON request body field — unique identifier of the vendor company affected by this environmental event." - changed
Input schema / properties / environmental_type_id / descriptionPrevious value: -"JSON request body field — the ID of the Environmental Type"New value: +"JSON request body field — unique identifier of the environmental type classifying this record. Retrieve valid IDs from GET /rest/v1.0/companies/{company_id}/incidents/environmental_types." - changed
Input schema / properties / estimated_cost_impact / descriptionPrevious value: -"JSON request body field — estimated cost impact of the record"New value: +"JSON request body field — estimated monetary cost impact of this environmental event." - changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the environmental record. Returned as id in List and Show responses." - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"JSON request body field — the ID of the Managed Equipment"New value: +"JSON request body field — unique identifier of the managed equipment involved in this environmental event." - changed
Input schema / properties / work_activity_id / descriptionPrevious value: -"JSON request body field — the ID of the Work Activity"New value: +"JSON request body field — unique identifier of the work activity during which this environmental event occurred."
- Changed
update_equipment_company_v2_15 fields changed- removed
Input schema / properties / equipment_id / additionalPropertiesRemoved value: -{} - changed
Input schema / properties / equipment_id / descriptionPrevious value: -"JSON request body field — unique identifier of the equipment"New value: +"URL path parameter — the ID of the equipment" - changed
Input schema / properties / equipment_id / typePrevious value: -"object"New value: +"string" - added
Input schema / properties / purchase_orderAdded value: +{ + "description": "JSON request body field — the purchase order number.", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "company_id" -]New value: +[ + "equipment_id", + "company_id" +]
- Changed
update_equipment_project_company5 fields changed- removed
Input schema / properties / equipment_id / additionalPropertiesRemoved value: -{} - changed
Input schema / properties / equipment_id / descriptionPrevious value: -"JSON request body field — unique identifier of the equipment"New value: +"URL path parameter — the ID of the equipment" - changed
Input schema / properties / equipment_id / typePrevious value: -"object"New value: +"string" - added
Input schema / properties / purchase_orderAdded value: +{ + "description": "JSON request body field — the purchase order number.", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "project_id", - "company_id" -]New value: +[ + "project_id", + "equipment_id", + "company_id" +]
- Removed
update_equipment_project_company_v2_0 - Added
update_equipment_timecard_entry_approval_status - Added
update_estimating_settings - Removed
update_existing_or_create_a_new_incident_alert_recipient - Added
update_field_rule - Added
update_field_rule_project_scope - Changed
update_filing_type2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the filing type. Use the id from the List Filing Types response." - changed
Input schema / properties / severity_level_id / descriptionPrevious value: -"JSON request body field — incident Severity Level ID"New value: +"JSON request body field — iD of the severity level to associate with this filing type. Obtain valid IDs from the company's incident severity levels."
- Changed
update_group2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Changed
update_group_order_rank2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Changed
update_harm_source3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"JSON request body field — flag that denotes if the Harm Source is available for use"New value: +"JSON request body field — flag that denotes if the Harm Source is available for use. Defaults to true on create." - changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the harm source. Use the id from the List Harm Sources response." - changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — the Name of the Harm Source"New value: +"JSON request body field — display name of the harm source. Required on create. Must be unique within the company."
- Changed
update_hazard3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"JSON request body field — flag that denotes if the Hazard is available for use"New value: +"JSON request body field — whether the hazard is available for selection when recording incidents." - changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the hazard. Use the id from the List Hazards response." - changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — the Name of the Hazard"New value: +"JSON request body field — display name of the hazard. Must be unique within the company. Cannot be changed for Procore-provided hazards."
- Changed
update_incident1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the incident. Use the `id` from the List or Create Incidents response."
- Changed
update_incident_action_type2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — incident Action Type ID"New value: +"URL path parameter — unique identifier of the incident action type." - changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — the Name of the Incident Action Type"New value: +"JSON request body field — display name for the incident action type. Required on create. Procore-provided (global) type names cannot be changed."
- Changed
update_incident_severity_level5 fields changed- changed
Input schema / properties / alert_recipient_ids / descriptionPrevious value: -"JSON request body field — iDs of Users that should receive notifications"New value: +"JSON request body field — array of Login Information IDs for users who receive notifications (email and/or push) when an incident is created with this severity level. Replaces the existing alert recipient list." - changed
Input schema / properties / email_trigger / descriptionPrevious value: -"JSON request body field — indicates whether an email should be sent"New value: +"JSON request body field — when true, email notifications are sent to alert recipients when an incident is created with this severity level." - changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — incident Severity Level ID"New value: +"URL path parameter — unique identifier of the incident severity level. Use the `id` from the List Severity Levels response." - changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — name of the Incident Severity Level"New value: +"JSON request body field — display name for the severity level. Can be customized from the default (procore_default_name)." - changed
Input schema / properties / push_notification_trigger / descriptionPrevious value: -"JSON request body field — indicates whether a push notification should be sent"New value: +"JSON request body field — when true, push notifications are sent to alert recipients when an incident is created with this severity level."
- Changed
update_information_of_a_budget_change2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"JSON request body field — unique identifier of this budget change"New value: +"URL path parameter — unique identifier of budget change" - changed
Input schema / requiredPrevious value: -[ - "project_id" -]New value: +[ + "project_id", + "id" +]
- Changed
update_layer2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Changed
update_layer_order_rank2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
- Added
update_line_item - Added
update_linked_local_rfis_for_an_external_rfi - Changed
update_meeting_project1 field changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"JSON request body field — the ID of the Project the Meetings belongs to"New value: +"URL path parameter — unique identifier for the project."
- Removed
update_payments_beneficiary_classification - Changed
update_prime_change_order4 fields changed- removed
Input schema / properties / attachment_idsRemoved value: -{ - "description": "JSON request body field — existing attachments to preserve on the response", - "items": {}, - "type": "array" -} - removed
Input schema / properties / drawing_revision_idsRemoved value: -{ - "description": "JSON request body field — drawing Revisions to attach to the response", - "items": {}, - "type": "array" -} - added
Input schema / properties / request_for_quote_attachment_idsAdded value: +{ + "description": "JSON request body field — list of attachment IDs to attach. These must presently be associated with Request For Quotes (or their Quotes / Responses).", + "items": {}, + "type": "array" +} - added
Input schema / properties / revised_substantial_completion_dateAdded value: +{ + "description": "JSON request body field — revised substantial completion date, only supported for Prime Change Orders on single-tier projects.", + "type": "string" +}
- Changed
update_prime_change_order_batch1 field changed- added
Input schema / properties / request_for_quote_attachment_idsAdded value: +{ + "description": "JSON request body field — list of attachment IDs to attach. These must presently be associated with Request For Quotes (or their Quotes / Responses).", + "items": {}, + "type": "array" +}
- Added
update_prime_change_order_line_item - Changed
update_prime_contract_line_item_project1 field changed- added
Input schema / properties / funding_rule_idAdded value: +{ + "description": "JSON request body field — iD of the funding rule associated with this line item. Funding Sources must be enabled at the project level. The rule must be ACTIVE and its currency must match the contract currency. Pass null to ...", + "type": "string" +}
- Removed
update_prime_contract_line_item_project_v2_0 - Changed
update_prime_contract_line_item_v1_01 field changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"JSON request body field — unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
update_prime_contract_project2 fields changed- removed
Input schema / properties / contract_start_dateRemoved value: -{ - "description": "JSON request body field — only applicable to Work Order Contracts.", - "type": "string" -} - added
Input schema / properties / signature_requiredAdded value: +{ + "description": "JSON request body field — if true, a signature is required to execute the contract; otherwise no signature is required.\n", + "type": "boolean" +}
- Removed
update_project_account - Added
update_project_asset_type_attachment - Changed
update_project_currency_configuration6 fields changed- changed
Input schema / properties / company_currency_exchange_rate_override / descriptionPrevious value: -"JSON request body field — override for the Company Currency Exchange Rate"New value: +"JSON request body field — optional decimal override (sent as a string for precision). When set, supersedes the company-level exchange rate when converting between this project's currency and the company base currency. Send ..." - changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — integer ID of the Procore company that owns the project. Obtainable from GET /rest/v1.0/companies." - changed
Input schema / properties / currency_display / descriptionPrevious value: -"JSON request body field — currency Display Options"New value: +"JSON request body field — how currency amounts should be rendered for this project. 'symbol' renders with the locale currency glyph (e.g., $); 'code' renders with the ISO code (e.g., USD). Omit to leave unchanged." - changed
Input schema / properties / currency_iso_code / descriptionPrevious value: -"JSON request body field — the currency iso code for this Currency Configurations operation"New value: +"JSON request body field — optional. ISO 4217 three-letter code for the project's currency (e.g., 'EUR').\nOnly updatable while `currency_iso_code_eligible_for_update` is true in the GET\nresponse. Returns 400 if an update is ..." - changed
Input schema / properties / multicurrency_enabled / descriptionPrevious value: -"JSON request body field — whether to apply currencies to the project's financial objects."New value: +"JSON request body field — whether to apply project-level currency settings to this project's financial objects. Requires the parent company to also have multicurrency enabled; otherwise the API returns 400. Omit to leave th..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"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."
- Removed
update_project_early_pay_programs - Changed
update_project_exchange_rates3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — integer ID of the Procore company that owns the project. Obtainable from GET /rest/v1.0/companies." - changed
Input schema / properties / exchange_rates / descriptionPrevious value: -"JSON request body field — project exchange rates"New value: +"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." - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — unique identifier for the Procore project"New value: +"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."
- Removed
update_project_incident_configuration - Added
update_project_incidents_configuration - Added
update_project_naming_standard_rule - Changed
update_project_observation_type5 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"JSON request body field — flag denoting if the Observation Type is available for use."New value: +"JSON request body field — whether the type can be selected on new Observations. Deactivating a type leaves existing Observations untouched." - changed
Input schema / properties / category / descriptionPrevious value: -"JSON request body field — category to be used for Observations created from this type."New value: +"JSON request body field — legacy category key. Prefer `observations_category_id`, which references a Company-managed Observations Category." - changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — project Observation Type ID"New value: +"URL path parameter — iD of the Project Observation Type, as returned in `id` by the list endpoint." - changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — name to be used for Observations created from this type."New value: +"JSON request body field — display name of the Observation Type, shown in the type picker when creating an Observation." - changed
Input schema / properties / observations_category_id / descriptionPrevious value: -"JSON request body field — observations category id to be used for Observations created from this type."New value: +"JSON request body field — iD of the Observations Category to file this type under. Determines which Configurable Field Set applies to Observations of this type."
- Removed
update_project_payor_pays_setting - Changed
update_property_damage1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the property damage record. Use the `id` from the List or Create Property Damages response."
- Changed
update_requisition_compliance_document10 fields changed- added
Input schema / properties / allow_vendor_submissionAdded value: +{ + "description": "JSON request body field — whether vendors are allowed to submit files against this compliance document.", + "type": "boolean" +} - added
Input schema / properties / document_typeAdded value: +{ + "description": "JSON request body field — category of compliance document. Valid values are constrained by the enum.", + "enum": [ + "bond", + "project_insurance", + "license", + "master_agreement", + "permit", + "safety", + "w9", + "other", + "payroll", + "stored_material", + "closeout" + ], + "type": "string" +} - changed
Input schema / properties / effective_at / descriptionPrevious value: -"JSON request body field — effective date of the compliance document"New value: +"JSON request body field — date and time the document becomes effective, in ISO 8601 format." - changed
Input schema / properties / expires_at / descriptionPrevious value: -"JSON request body field — expiration date of the compliance document"New value: +"JSON request body field — date and time the document expires, in ISO 8601 format." - added
Input schema / properties / nameAdded value: +{ + "description": "JSON request body field — display name of the compliance document.", + "type": "string" +} - added
Input schema / properties / notesAdded value: +{ + "description": "JSON request body field — general notes for the compliance document. Only commitment admins can update this field.", + "type": "string" +} - changed
Input schema / properties / prostore_file_ids / descriptionPrevious value: -"JSON request body field — array of Procore file IDs"New value: +"JSON request body field — iDs of Procore files to attach to the compliance document." - changed
Input schema / properties / reviewer_notes / descriptionPrevious value: -"JSON request body field — notes from the reviewer"New value: +"JSON request body field — notes recorded by the reviewer during review." - changed
Input schema / properties / status / descriptionPrevious value: -"JSON request body field — status of the compliance document"New value: +"JSON request body field — compliance status to set on the document. Valid values are constrained by the enum." - added
Input schema / properties / status / enumAdded value: +[ + "not_submitted", + "review_pending", + "revise_and_resubmit", + "approved", + "not_compliant", + "in_review", + "revision_needed", + "compliant" +]
- Changed
update_requisition_subcontractor_invoice2 fields changed- changed
Input schema / properties / view / descriptionPrevious value: -"Query string parameter — specifies which view (which attributes) of the resource is going to be present in the response."New value: +"Query string parameter — specifies which view (which attributes) of the resource is going to be present in the response. The `header_only` view is intended for split header / line-items rendering on the Subcontractor Invoi..." - changed
Input schema / properties / view / enumPrevious value: -[ - "default", - "extended", - "items", - "action_policy" -]New value: +[ + "default", + "extended", + "items", + "action_policy", + "header_only" +]
- Changed
update_resource_project1 field changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"JSON request body field — the ID of the Project the Resource belongs to"New value: +"URL path parameter — unique identifier for the project."
- Changed
update_schedule_metadata1 field changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"JSON request body field — the ID of the Project the Schedule Type belongs to"New value: +"URL path parameter — unique identifier for the project."
- Added
update_specification_section_divisions - Added
update_specification_section_revision - Changed
update_stamp3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"URL path parameter — the unique identifier of the company"New value: +"URL path parameter — unique identifier of the company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"URL path parameter — the unique identifier of the project"New value: +"URL path parameter — unique identifier of the project" - changed
Input schema / properties / stamp_id / descriptionPrevious value: -"URL path parameter — the unique identifier of the stamp to update"New value: +"URL path parameter — unique identifier of the stamp to update"
- Changed
update_submittal1 field changed- changed
Input schema / properties / responsible_contractor_id / descriptionPrevious value: -"JSON request body field — the Responsible Contractor of the Submittal"New value: +"JSON request body field — the Responsible Contractor of the Submittal\n*This field is required when received_from_id is present and the field is visible in the project's field configuration"
- Added
update_submittal_response - Changed
update_task_item1 field changed- added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — serialization view for the task item. When omitted, defaults to **`extended`** for this API version.\n\n- **`compact`** — `id` and `title` only.\n- **`normal`** — standard shape without extended-only ...", + "enum": [ + "compact", + "normal", + "extended" + ], + "type": "string" +}
- Added
update_the_specifications_user_permissions - Changed
update_timecard_entry_project1 field changed- added
Input schema / properties / serializer_viewAdded value: +{ + "description": "Query string parameter — changes which fields are included in the serialized response.\n- `extended_daily_log` - Returns extended fields plus Daily Log segment associations\n- Default (not specified) - Returns the standard e...", + "enum": [ + "extended_daily_log" + ], + "type": "string" +}
- Changed
update_unit_of_measure2 fields changed- changed
Input schema / properties / name / descriptionPrevious value: -"JSON request body field — name of the Unit of Measure"New value: +"JSON request body field — display name of the Unit of Measure (e.g., `hours`). Must be unique within the company and cannot match a Procore-provided standard UOM name." - changed
Input schema / properties / uom_category_id / descriptionPrevious value: -"JSON request body field — iD of the Unit of Measure Category"New value: +"JSON request body field — iD of the parent UOM Category from `GET /rest/v1.0/companies/{company_id}/uom_categories`."
- Added
update_workflow_bulk_replace_request - Added
updates_a_defect_resource - Added
updates_a_line_item_for_a_defect - Added
updates_a_line_item_of_a_shipment - Added
updates_a_line_item_on_an_adjustment_document - Added
updates_a_material_requirements_document_header - Added
updates_a_receipt_header - Added
updates_a_single_purchase_order_line_item - Added
updates_a_single_receipt_line_item - Added
updates_a_transfer_document_header - Added
updates_an_adjustment_document_header - Added
updates_an_attachment_for_a_direct_issue - Added
updates_an_attachment_for_a_material_requirements_resource - Added
updates_an_attachment_for_a_purchase_order_resource - Added
updates_an_attachment_for_a_receipt_resource - Added
updates_an_attachment_for_a_transfer - Added
updates_an_attachment_for_an_adjustment_resource - Added
updates_an_attachment_for_an_inter_project_transfer - Added
updates_an_existing_condition_for_a_specific_line_item_in_a - Added
updates_attachment_for_a_defect_resource - Added
updates_attachment_for_a_material_resource - Added
updates_header_fields_of_a_direct_issue_document - Added
updates_material_header_information - Added
updates_multiple_line_items_for_a_defect - Added
updates_notes_on_a_direct_issue_line_item - Added
updates_properties_on_a_single_shipment - Added
updates_properties_on_multiple_purchase_order_line_items - Added
updates_properties_on_multiple_shipment_line_items - Added
updates_quantity_on_a_direct_issue_line_item_location - Added
updates_the_specified_transfer_line_item - Removed
validate_disbursement - Removed
validate_existing_disbursement - Added
verifies_if_a_material_can_be_deleted_by_checking_for_connected - Added
verifies_if_a_purchase_order_can_be_deleted - Added
verifies_if_a_shipment_can_be_deleted_by_checking_for_connected - Added
verify_if_the_material_requirement_items_can_be_deleted - Changed
view_an_action_plan_test_record2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
view_an_electronic_signature - Changed
view_bid_form_company2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Changed
view_bid_form_project2 fields changed- removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number for paginated results (default: 1)", - "type": "number" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Number of items per page (default: 100, max: 100)", - "type": "number" -}
- Added
withdraw_an_electronic_signature
3131 tool updates
v1.1.0- Changed
add_a_new_markup13 fields changed- changed
Input schema / properties / applies_to_all / descriptionPrevious value: -"Indicates if the markup applies to all change management items within the holder."New value: +"JSON request body field — indicates if the markup applies to all change management items within the holder." - changed
Input schema / properties / compound / descriptionPrevious value: -"Details of the compound calculations for the markup."New value: +"JSON request body field — details of the compound calculations for the markup." - changed
Input schema / properties / holder_id / descriptionPrevious value: -"ID of the Markup's Holder"New value: +"Query string parameter — iD of the Markup's Holder" - changed
Input schema / properties / holder_type / descriptionPrevious value: -"Type of the Markup's Holder"New value: +"Query string parameter — type of the Markup's Holder" - changed
Input schema / properties / markup_conditions / descriptionPrevious value: -"Conditions that determine how the markup will be applied to change management items within the holder."New value: +"JSON request body field — conditions that determine how the markup will be applied to change management items within the holder." - changed
Input schema / properties / markup_set / descriptionPrevious value: -"Set of the markup.\n- **Horizontal markup:** Calculates the markup amount on an individual line item.\n- **Vertical markup:** Calculates the markup amount as a subtotal on all line items on a change ..."New value: +"JSON request body field — set of the markup.\n- **Horizontal markup:** Calculates the markup amount on an individual line item.\n- **Vertical markup:** Calculates the markup amount as a subtotal on all line items on a change ..." - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the markup."New value: +"JSON request body field — name of the markup." - changed
Input schema / properties / percentage / descriptionPrevious value: -"Percentage value of the markup. The default precision is 50."New value: +"JSON request body field — percentage value of the markup. The default precision is 50." - changed
Input schema / properties / position / descriptionPrevious value: -"Position of the markup in the markup set of the holder. The default is the next available position, starting at 1."New value: +"JSON request body field — position of the markup in the markup set of the holder. The default is the next available position, starting at 1." - changed
Input schema / properties / prime_line_item_id / descriptionPrevious value: -"Unique identifier for the Prime Contract Line Item associated with the markup. This ensures synchronization between the estimated value (without vertical markup) and the revenue value (with verti..."New value: +"JSON request body field — unique identifier for the Prime Contract Line Item associated with the markup. This ensures synchronization between the estimated value (without vertical markup) and the revenue value (with verti..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the Markup's Project"New value: +"Query string parameter — iD of the Markup's Project" - changed
Input schema / properties / tax_code_ids / descriptionPrevious value: -"List of unique identifiers for tax codes associated with the markup. Applicable only when advanced calculations are enabled."New value: +"JSON request body field — list of unique identifiers for tax codes associated with the markup. Applicable only when advanced calculations are enabled." - changed
Input schema / properties / wbs_code_id / descriptionPrevious value: -"ID of the Wbs Code the Markup percentage will be applied to on a project's budget. Default is ID of the `None` Wbs Code."New value: +"JSON request body field — iD of the Wbs Code the Markup percentage will be applied to on a project's budget. Default is ID of the `None` Wbs Code."
- Added
add_additional_assignees_to_a_workflow_instance_company - Removed
add_additional_assignees_to_a_workflow_instance_company_v2_0 - Added
add_additional_assignees_to_a_workflow_instance_project - Removed
add_additional_assignees_to_a_workflow_instance_project_v2_0 - Changed
add_alternative_response_set_to_project_checklist_template3 fields changed- changed
Input schema / properties / alternative_response_set_id / descriptionPrevious value: -"Alternative Response Set ID"New value: +"JSON request body field — alternative Response Set ID" - changed
Input schema / properties / id / descriptionPrevious value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
add_an_existing_response_to_an_item_response_set3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"The ID of the Response"New value: +"URL path parameter — the ID of the Response" - changed
Input schema / properties / response_set_id / descriptionPrevious value: -"Checklist Item Response Set ID"New value: +"URL path parameter — checklist Item Response Set ID"
- Changed
add_attachments_to_punch_item3 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Punch Item Assignment attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[..."New value: +"JSON request body field — punch Item Assignment attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[..." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Punch Item"New value: +"Query string parameter — iD of the Punch Item" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project"New value: +"Query string parameter — unique identifier for the Procore project"
- Removed
add_attachments_to_punch_item_v1_1 - Changed
add_category_to_project4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / name / descriptionPrevious value: -"The name of the Category."New value: +"JSON request body field — the name of the Category." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project" - changed
Input schema / properties / subcategories / descriptionPrevious value: -"List of Subcategories under this Category. If no Subcategories are needed, this can be an empty array."New value: +"JSON request body field — list of Subcategories under this Category. If no Subcategories are needed, this can be an empty array."
- Changed
add_change_order_package_to_a_requisition_subcontractor_invoice4 fields changed- changed
Input schema / properties / change_order_package_id / descriptionPrevious value: -"Change Order Package ID"New value: +"Query string parameter — change Order Package ID" - changed
Input schema / properties / commitment_id / descriptionPrevious value: -"Commitment ID"New value: +"Query string parameter — unique identifier of the commitment" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / requisition_id / descriptionPrevious value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
- Changed
add_checklist_template_alternative_response_set3 fields changed- changed
Input schema / properties / alternative_response_set_id / descriptionPrevious value: -"Alternative Response Set ID"New value: +"JSON request body field — alternative Response Set ID" - changed
Input schema / properties / id / descriptionPrevious value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
add_company_checklist_template_alternative_response_set3 fields changed- changed
Input schema / properties / alternative_response_set_id / descriptionPrevious value: -"Alternative Response Set ID"New value: +"JSON request body field — alternative Response Set ID" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Checklist Template ID"New value: +"URL path parameter — company Checklist Template ID"
- Changed
add_company_user_to_project3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the user"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / permission_template_id / descriptionPrevious value: -"User permission template identifier"New value: +"JSON request body field — user permission template identifier" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
add_person_to_a_group3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / group_id / descriptionPrevious value: -"UUID reference to the Group being assigned."New value: +"JSON request body field — uUID reference to the Group being assigned." - changed
Input schema / properties / person_id / descriptionPrevious value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
- Changed
add_role_to_project4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / job_title_id / descriptionPrevious value: -"UUID of the Job Title for the Role. If omitted, the Person's default Job Title is used."New value: +"JSON request body field — uUID of the Job Title for the Role. If omitted, the Person's default Job Title is used." - changed
Input schema / properties / person_id / descriptionPrevious value: -"UUID of the Person being assigned the Role."New value: +"JSON request body field — uUID of the Person being assigned the Role." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
- Changed
add_segment_to_the_project_pattern2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / segment_id / descriptionPrevious value: -"Segment ID"New value: +"JSON request body field — unique identifier of the segment"
- Changed
add_subcategory_to_category4 fields changed- changed
Input schema / properties / category_id / descriptionPrevious value: -"Unique identifier for the Category."New value: +"URL path parameter — unique identifier for the Category." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the Subcategory to be added."New value: +"JSON request body field — name of the Subcategory to be added." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
- Changed
add_tag_instance_to_person4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / expr_date / descriptionPrevious value: -"Expiration date for the tag in **milliseconds since epoch** (Unix timestamp). Required if the tag type mandates an expiration date.\n"New value: +"JSON request body field — expiration date for the tag in **milliseconds since epoch** (Unix timestamp). Required if the tag type mandates an expiration date.\n" - changed
Input schema / properties / person_id / descriptionPrevious value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person" - changed
Input schema / properties / tag_id / descriptionPrevious value: -"UUID reference to the **Tag entity** in the LaborChart system. This identifies the Tag being assigned to the Person.\n**Tag ID vs Tag Instance ID** - `tag_id` references the **Tag entity** in your s..."New value: +"JSON request body field — uUID reference to the **Tag entity** in the LaborChart system. This identifies the Tag being assigned to the Person.\n**Tag ID vs Tag Instance ID** - `tag_id` references the **Tag entity** in your s..."
- Changed
add_tag_instance_to_project3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project" - changed
Input schema / properties / tag_id / descriptionPrevious value: -"UUID reference of the Tag to be applied to the Project."New value: +"JSON request body field — uUID reference of the Tag to be applied to the Project."
- Changed
add_to_project4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the vendor"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The normal view provides what is shown below.\nThe extended view is the same as the normal view but includes children_count, legal_name, parent, and bidding.\nThe name view is a minimal view only inc..."New value: +"Query string parameter — the normal view provides what is shown below.\nThe extended view is the same as the normal view but includes children_count, legal_name, parent, and bidding.\nThe default view is normal." - changed
Input schema / properties / view / enumPrevious value: -[ - "normal", - "extended", - "name" -]New value: +[ + "normal", + "extended" +]
- Removed
add_to_project_v1_1 - Changed
add_values_to_custom_field3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / field_id / descriptionPrevious value: -"UUID of the Custom Field."New value: +"URL path parameter — uUID of the Custom Field." - changed
Input schema / properties / values / descriptionPrevious value: -"List of values to append to the field."New value: +"JSON request body field — list of values to append to the field."
- Changed
add_wage_override4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / job_title_id / descriptionPrevious value: -"UUID of the Job Title for which the Wage Override applies."New value: +"JSON request body field — uUID of the Job Title for which the Wage Override applies." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project" - changed
Input schema / properties / rate / descriptionPrevious value: -"Hourly wage rate override for the specified Job Title."New value: +"JSON request body field — hourly wage rate override for the specified Job Title."
- Changed
approve_payments_beneficiary3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / payments_beneficiary_id / descriptionPrevious value: -"Unique identifier of the payments beneficiary"New value: +"URL path parameter — unique identifier of the payments beneficiary" - changed
Input schema / properties / receivingPaymentsCompanyExternalAccountId / descriptionPrevious value: -"Receiving payments company's external account ID"New value: +"JSON request body field — receiving payments company's external account ID"
- Added
assign_the_attribute_items_to_the_wbs_codes - Removed
assign_the_attribute_items_to_the_wbs_codes_v2_0 - Added
associate_equipment_with_project_company - Removed
associate_equipment_with_project_company_v2_0 - Added
associate_equipment_with_project_project - Removed
associate_equipment_with_project_project_v2_0 - Changed
batch_get_model_manager_viewpoints_by_uuid_rest_v2_0_issue4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / coordination_issue_id / descriptionPrevious value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID" - changed
Input schema / properties / ids / descriptionPrevious value: -"Requested MM viewpoint UUIDs (server filters to those mapped on the issue)"New value: +"JSON request body field — requested MM viewpoint UUIDs (server filters to those mapped on the issue)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
batch_update_correspondence_type_items3 fields changed- changed
Input schema / properties / completion_mode / descriptionPrevious value: -"Defines whether to update items that can be, or none if at least one item can not be updated. Defaults to 'all_or_nothing'."New value: +"Query string parameter — defines whether to update items that can be, or none if at least one item can not be updated. Defaults to 'all_or_nothing'." - changed
Input schema / properties / generic_tool_items / descriptionPrevious value: -"generic_tool_items"New value: +"JSON request body field — the generic tool items for this Custom - Configurable Tools operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
batch_update_generic_tool_items6 fields changed- changed
Input schema / properties / completion_mode / descriptionPrevious value: -"Whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\""New value: +"Query string parameter — whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\"" - changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool" - changed
Input schema / properties / generic_tool_items / descriptionPrevious value: -"generic_tool_items"New value: +"JSON request body field — the generic tool items for this Custom - Configurable Tools operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"Whether to run configurable validations during the update operation. Defaults to false."New value: +"Query string parameter — whether to run configurable validations during the update operation. Defaults to false." - changed
Input schema / properties / view / descriptionPrevious value: -"If supplied customize the response format"New value: +"Query string parameter — if supplied customize the response format"
- Changed
batch_update_rfis3 fields changed- changed
Input schema / properties / data / descriptionPrevious value: -"data"New value: +"JSON request body field — the data for this RFI operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
bid_level_across_a_bid_form6 fields changed- changed
Input schema / properties / bid_form_id / descriptionPrevious value: -"Bid Form ID"New value: +"URL path parameter — unique identifier of the bid form" - changed
Input schema / properties / bid_package_id / descriptionPrevious value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package" - changed
Input schema / properties / export_format / descriptionPrevious value: -"Export File Format"New value: +"Query string parameter — export File Format" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
bid_level_across_a_bid_form_v1_1 - Added
bulk_activation - Removed
bulk_activation_v2_0 - Added
bulk_add_company_users_to_projects - Removed
bulk_add_company_users_to_projects_v1_1 - Removed
bulk_add_company_users_to_projects_v1_2 - Removed
bulk_add_company_users_to_projects_v1_3 - Removed
bulk_add_company_users_to_projects_v2_0 - Removed
bulk_create - Changed
bulk_create_action_plan_item_assignees3 fields changed- changed
Input schema / properties / completion_mode / descriptionPrevious value: -"Whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\""New value: +"Query string parameter — whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\"" - changed
Input schema / properties / plan_item_assignees / descriptionPrevious value: -"plan_item_assignees"New value: +"JSON request body field — the plan item assignees for this Action Plans operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
bulk_create_action_plan_references3 fields changed- changed
Input schema / properties / completion_mode / descriptionPrevious value: -"Whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\""New value: +"Query string parameter — whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\"" - changed
Input schema / properties / plan_references / descriptionPrevious value: -"plan_references"New value: +"JSON request body field — the plan references for this Action Plans operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
bulk_create_action_plan_template_approvers3 fields changed- changed
Input schema / properties / party_ids / descriptionPrevious value: -"Array of Party IDs"New value: +"JSON request body field — array of party identifiers" - changed
Input schema / properties / plan_template_id / descriptionPrevious value: -"ID of the Project Action Plan Template"New value: +"JSON request body field — iD of the Project Action Plan Template" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
bulk_create_action_plan_template_item_assignees_company3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / completion_mode / descriptionPrevious value: -"Whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\""New value: +"Query string parameter — whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\"" - changed
Input schema / properties / plan_template_item_assignees / descriptionPrevious value: -"plan_template_item_assignees"New value: +"JSON request body field — plan_template_item_assignees"
- Changed
bulk_create_action_plan_template_item_assignees_project3 fields changed- changed
Input schema / properties / completion_mode / descriptionPrevious value: -"Whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\""New value: +"Query string parameter — whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\"" - changed
Input schema / properties / plan_template_item_assignees / descriptionPrevious value: -"plan_template_item_assignees"New value: +"JSON request body field — plan_template_item_assignees" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
bulk_create_action_plan_template_receivers3 fields changed- changed
Input schema / properties / party_ids / descriptionPrevious value: -"Array of Party IDs"New value: +"JSON request body field — array of party identifiers" - changed
Input schema / properties / plan_template_id / descriptionPrevious value: -"ID of the Project Action Plan Template"New value: +"JSON request body field — iD of the Project Action Plan Template" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
bulk_create_action_plan_template_references3 fields changed- changed
Input schema / properties / completion_mode / descriptionPrevious value: -"Whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\""New value: +"Query string parameter — whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\"" - changed
Input schema / properties / plan_template_references / descriptionPrevious value: -"plan_template_references"New value: +"JSON request body field — plan_template_references" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
bulk_create_action_plan_template_test_record_requests_company3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / completion_mode / descriptionPrevious value: -"Whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\""New value: +"Query string parameter — whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\"" - changed
Input schema / properties / plan_template_test_record_requests / descriptionPrevious value: -"plan_template_test_record_requests"New value: +"JSON request body field — plan_template_test_record_requests"
- Changed
bulk_create_action_plan_template_test_record_requests_project3 fields changed- changed
Input schema / properties / completion_mode / descriptionPrevious value: -"Whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\""New value: +"Query string parameter — whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\"" - changed
Input schema / properties / plan_template_test_record_requests / descriptionPrevious value: -"plan_template_test_record_requests"New value: +"JSON request body field — plan_template_test_record_requests" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
bulk_create_action_plan_test_record_requests3 fields changed- changed
Input schema / properties / completion_mode / descriptionPrevious value: -"Whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\""New value: +"Query string parameter — whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\"" - changed
Input schema / properties / plan_test_record_requests / descriptionPrevious value: -"plan_test_record_requests"New value: +"JSON request body field — plan_test_record_requests" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
bulk_create_action_plans_for_locations - Removed
bulk_create_action_plans_for_locations_v2_0 - Changed
bulk_create_actual_production_quantities2 fields changed- changed
Input schema / properties / actual_production_quantities / descriptionPrevious value: -"actual_production_quantities"New value: +"JSON request body field — actual_production_quantities" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
bulk_create_checklist_inspections_item_attachments3 fields changed- changed
Input schema / properties / item_id / descriptionPrevious value: -"The ID of the Checklist Item"New value: +"JSON request body field — the ID of the Checklist Item" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / prostore_file_ids / descriptionPrevious value: -"An array of Prostore Files to link to the Checklist Item"New value: +"JSON request body field — an array of Prostore Files to link to the Checklist Item"
- Added
bulk_create_company_webhooks_triggers - Removed
bulk_create_company_webhooks_triggers_v2_0 - Changed
bulk_create_custom_field_lov_entries2 fields changed- changed
Input schema / properties / custom_field_definition_id / descriptionPrevious value: -"Unique identifier for the Custom Field Definition."New value: +"URL path parameter — unique identifier for the Custom Field Definition." - changed
Input schema / properties / custom_field_lov_entries / descriptionPrevious value: -"custom_field_lov_entries"New value: +"JSON request body field — custom_field_lov_entries"
- Changed
bulk_create_materials2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / time_and_material_materials / descriptionPrevious value: -"Array of Material objects"New value: +"JSON request body field — array of Material objects"
- Changed
bulk_create_plan_template_references3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / completion_mode / descriptionPrevious value: -"Whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\""New value: +"Query string parameter — whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\"" - changed
Input schema / properties / plan_template_references / descriptionPrevious value: -"plan_template_references"New value: +"JSON request body field — plan_template_references"
- Added
bulk_create_project - Changed
bulk_create_project_memberships2 fields changed- changed
Input schema / properties / party_ids / descriptionPrevious value: -"party_ids"New value: +"JSON request body field — array of party identifiers" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
bulk_create_project_v1_0 - Added
bulk_create_project_webhooks_triggers - Removed
bulk_create_project_webhooks_triggers_v2_0 - Changed
bulk_create_time_and_material_equipment_logs2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / time_and_material_equipment_logs / descriptionPrevious value: -"Array of Time and material equipment log objects"New value: +"JSON request body field — array of Time and material equipment log objects"
- Changed
bulk_create_time_and_material_timecards2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / time_and_material_timecards / descriptionPrevious value: -"Array of Time and material timecard objects"New value: +"JSON request body field — array of Time and material timecard objects"
- Changed
bulk_create_timecard_entries2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / timecard_entries / descriptionPrevious value: -"Array of Timecard Entries you want to create"New value: +"JSON request body field — array of Timecard Entries you want to create"
- Changed
bulk_create_triggers1 field changed- changed
Input schema / properties / hook_id / descriptionPrevious value: -"Webhooks Hook ID"New value: +"URL path parameter — unique identifier of the hook"
- Changed
bulk_create_update_ui_flags1 field changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
- Removed
bulk_create_v1_1 - Changed
bulk_create_wbs_codes2 fields changed- changed
Input schema / properties / bulk / descriptionPrevious value: -"bulk"New value: +"JSON request body field — the bulk for this Work Breakdown Structure operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
bulk_create_workflow_instances_company_public - Removed
bulk_create_workflow_instances_company_public_v2_0 - Added
bulk_create_workflow_instances_project_public - Removed
bulk_create_workflow_instances_project_public_v2_0 - Added
bulk_deactivation - Removed
bulk_deactivation_v2_0 - Changed
bulk_delete_bim_model_revision_viewpoints2 fields changed- changed
Input schema / properties / ids / descriptionPrevious value: -"Array of BIM Model Revision Viewpoint IDs to delete"New value: +"Query string parameter — array of BIM Model Revision Viewpoint IDs to delete" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
bulk_delete_company_segment_items3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / segment_id / descriptionPrevious value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment" - changed
Input schema / properties / segment_item_ids / descriptionPrevious value: -"List of segment item IDs"New value: +"JSON request body field — list of segment item IDs"
- Added
bulk_delete_company_webhooks_triggers - Removed
bulk_delete_company_webhooks_triggers_v2_0 - Changed
bulk_delete_managed_equipment2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / managed_equipment_ids / descriptionPrevious value: -"IDs of all Managed Equipment specified for bulk destroy"New value: +"JSON request body field — iDs of all Managed Equipment specified for bulk destroy"
- Changed
bulk_delete_managed_equipment_attachment4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / managed_equipment_attachment_ids / descriptionPrevious value: -"IDs of all the Managed Equipment Attachment values specified for bulk destroy"New value: +"JSON request body field — iDs of all the Managed Equipment Attachment values specified for bulk destroy" - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"ID of the Managed Equipment associated with the attachment(s)"New value: +"JSON request body field — iD of the Managed Equipment associated with the attachment(s)"
- Changed
bulk_delete_managed_equipment_maintenance_log_attachments3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Managed Equipment Maintenance Log"New value: +"URL path parameter — id of the Managed Equipment Maintenance Log" - changed
Input schema / properties / managed_equipment_maintenance_logs_attachment_ids / descriptionPrevious value: -"IDs of all the Managed Equipment Maintenance Logs Attachment values specified for bulk destroy"New value: +"JSON request body field — iDs of all the Managed Equipment Maintenance Logs Attachment values specified for bulk destroy"
- Changed
bulk_delete_materials2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / time_and_material_materials_ids / descriptionPrevious value: -"Array of material IDs specified for delete"New value: +"JSON request body field — array of material IDs specified for delete"
- Changed
bulk_delete_payouts_by_invoice4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / deletedReason / descriptionPrevious value: -"Reason for deleting the payout"New value: +"JSON request body field — reason for deleting the payout" - changed
Input schema / properties / disbursement_id / descriptionPrevious value: -"Unique identifier for the disbursement."New value: +"URL path parameter — unique identifier for the disbursement." - changed
Input schema / properties / invoice_id / descriptionPrevious value: -"Invoice ID"New value: +"URL path parameter — unique identifier of the invoice"
- Changed
bulk_delete_procore_item_associations3 fields changed- changed
Input schema / properties / association_ids / descriptionPrevious value: -"Array of Procore Item Association IDs to delete"New value: +"JSON request body field — array of Procore Item Association IDs to delete" - changed
Input schema / properties / item_type / descriptionPrevious value: -"Type of Procore Association Items"New value: +"JSON request body field — type of Procore Association Items" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
bulk_delete_project_segment_items3 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / segment_id / descriptionPrevious value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment" - changed
Input schema / properties / segment_item_ids / descriptionPrevious value: -"List of segment item IDs"New value: +"JSON request body field — list of segment item IDs"
- Added
bulk_delete_project_tasks_company - Added
bulk_delete_project_tasks_company_v2_0 - Removed
bulk_delete_project_tasks_v2_0_company - Removed
bulk_delete_project_tasks_v2_0_company_v2_0 - Added
bulk_delete_project_webhooks_triggers - Removed
bulk_delete_project_webhooks_triggers_v2_0 - Changed
bulk_delete_time_and_material_attachments2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / time_and_material_entry_attachment_ids / descriptionPrevious value: -"IDs of all the Time and Material Entries Attachment values specified for bulk destroy"New value: +"JSON request body field — iDs of all the Time and Material Entries Attachment values specified for bulk destroy"
- Changed
bulk_delete_time_and_material_equipment_logs2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / time_and_material_equipment_logs_ids / descriptionPrevious value: -"Array of time and material equipment log IDs specified for delete"New value: +"JSON request body field — array of time and material equipment log IDs specified for delete"
- Changed
bulk_delete_time_and_material_timecards2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / time_and_material_timecards_ids / descriptionPrevious value: -"Array of time and material timecard IDs specified for delete"New value: +"JSON request body field — array of time and material timecard IDs specified for delete"
- Changed
bulk_delete_triggers1 field changed- changed
Input schema / properties / hook_id / descriptionPrevious value: -"Webhooks Hook ID"New value: +"URL path parameter — unique identifier of the hook"
- Changed
bulk_destroy_action_plan_template_approvers3 fields changed- changed
Input schema / properties / ids / descriptionPrevious value: -"Array of Approver IDs"New value: +"JSON request body field — array of Approver IDs" - changed
Input schema / properties / plan_template_id / descriptionPrevious value: -"ID of the Project Action Plan Template"New value: +"JSON request body field — iD of the Project Action Plan Template" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
bulk_destroy_action_plan_template_receivers3 fields changed- changed
Input schema / properties / ids / descriptionPrevious value: -"Array of Receiver IDs"New value: +"JSON request body field — array of Receiver IDs" - changed
Input schema / properties / plan_template_id / descriptionPrevious value: -"ID of the Project Action Plan Template"New value: +"JSON request body field — iD of the Project Action Plan Template" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
bulk_destroy_actual_production_quantities2 fields changed- changed
Input schema / properties / actual_production_quantity_ids / descriptionPrevious value: -"IDs of Actual Production Quantities to be destroyed"New value: +"JSON request body field — iDs of Actual Production Quantities to be destroyed" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
bulk_remove_company_users_from_projects - Removed
bulk_remove_company_users_from_projects_v1_1 - Removed
bulk_remove_company_users_from_projects_v1_2 - Removed
bulk_remove_company_users_from_projects_v1_3 - Removed
bulk_remove_company_users_from_projects_v2_0 - Added
bulk_remove_current_project_project - Removed
bulk_remove_current_project_project_v2_0 - Removed
bulk_remove_current_project_project_v2_1 - Added
bulk_remove_project_details_for_company_users_on_projects - Removed
bulk_remove_project_details_for_company_users_on_projects_v2_0 - Added
bulk_remove_project_memberships - Removed
bulk_remove_project_memberships_v2_0 - Changed
bulk_retrieve_managed_equipment2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / managed_equipment_ids / descriptionPrevious value: -"IDs of all Managed Equipment specified for bulk restore"New value: +"JSON request body field — iDs of all Managed Equipment specified for bulk restore"
- Changed
bulk_update_action_plan_item2 fields changed- changed
Input schema / properties / plan_items / descriptionPrevious value: -"plan_items"New value: +"JSON request body field — the plan items for this Action Plans operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
bulk_update_action_plan_item_assignees3 fields changed- changed
Input schema / properties / completion_mode / descriptionPrevious value: -"Whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\""New value: +"Query string parameter — whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\"" - changed
Input schema / properties / plan_item_assignees / descriptionPrevious value: -"plan_item_assignees"New value: +"JSON request body field — the plan item assignees for this Action Plans operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
bulk_update_action_plan_template_item_assignees3 fields changed- changed
Input schema / properties / completion_mode / descriptionPrevious value: -"Whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\""New value: +"Query string parameter — whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\"" - changed
Input schema / properties / plan_template_item_assignees / descriptionPrevious value: -"plan_template_item_assignees"New value: +"JSON request body field — plan_template_item_assignees" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
bulk_update_action_plan_template_item_company2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / plan_template_items / descriptionPrevious value: -"plan_template_items"New value: +"JSON request body field — the plan template items for this Action Plans operation"
- Changed
bulk_update_action_plan_template_item_project3 fields changed- changed
Input schema / properties / completion_mode / descriptionPrevious value: -"Whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\""New value: +"Query string parameter — whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\"" - changed
Input schema / properties / plan_template_items / descriptionPrevious value: -"plan_template_items"New value: +"JSON request body field — the plan template items for this Action Plans operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
bulk_update_actual_production_quantities2 fields changed- changed
Input schema / properties / actual_production_quantities / descriptionPrevious value: -"actual_production_quantities"New value: +"JSON request body field — actual_production_quantities" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
bulk_update_affliction_types3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Affliction Types are available for use"New value: +"JSON request body field — flag that denotes if the Affliction Types are available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / ids / descriptionPrevious value: -"ids"New value: +"JSON request body field — the ids for this Incidents operation"
- Changed
bulk_update_company_action_plan_template_item_assignees3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / completion_mode / descriptionPrevious value: -"Whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\""New value: +"Query string parameter — whether to update what can be or nothing if one can not be updated. Defaults to \"all_or_nothing\"" - changed
Input schema / properties / plan_template_item_assignees / descriptionPrevious value: -"plan_template_item_assignees"New value: +"JSON request body field — plan_template_item_assignees"
- Changed
bulk_update_company_observation_templates3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / observation_template_ids / descriptionPrevious value: -"IDs of all Company Observation Templates specified for bulk update"New value: +"Query string parameter — iDs of all Company Observation Templates specified for bulk update" - changed
Input schema / properties / trade_id / descriptionPrevious value: -"The ID of the Company Observation Template's Trade"New value: +"JSON request body field — the ID of the Company Observation Template's Trade"
- Changed
bulk_update_contributing_behaviors3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Contributing Behaviors are available for use"New value: +"JSON request body field — flag that denotes if the Contributing Behaviors are available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / ids / descriptionPrevious value: -"ids"New value: +"JSON request body field — the ids for this Incidents operation"
- Changed
bulk_update_contributing_conditions3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Contributing Conditions are available for use"New value: +"JSON request body field — flag that denotes if the Contributing Conditions are available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / ids / descriptionPrevious value: -"ids"New value: +"JSON request body field — the ids for this Incidents operation"
- Added
bulk_update_current_project_company - Removed
bulk_update_current_project_company_v2_0 - Removed
bulk_update_current_project_company_v2_1 - Added
bulk_update_current_project_project - Removed
bulk_update_current_project_project_v2_0 - Removed
bulk_update_current_project_project_v2_1 - Added
bulk_update_equipment_company - Removed
bulk_update_equipment_company_v2_1 - Changed
bulk_update_harm_sources3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Harm Sources are available for use"New value: +"JSON request body field — flag that denotes if the Harm Sources are available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / ids / descriptionPrevious value: -"ids"New value: +"JSON request body field — the ids for this Incidents operation"
- Changed
bulk_update_hazards3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Hazards are available for use"New value: +"JSON request body field — flag that denotes if the Hazards are available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / ids / descriptionPrevious value: -"ids"New value: +"JSON request body field — the ids for this Incidents operation"
- Changed
bulk_update_incident_action_types3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Incident Action Types are available for use"New value: +"JSON request body field — flag that denotes if the Incident Action Types are available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / ids / descriptionPrevious value: -"ids"New value: +"JSON request body field — the ids for this Incidents operation"
- Added
bulk_update_links - Removed
bulk_update_links_v2_0 - Changed
bulk_update_managed_equipment_models4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / is_active / descriptionPrevious value: -"If the equipment model is active"New value: +"JSON request body field — if the equipment model is active" - changed
Input schema / properties / managed_equipment_make_id / descriptionPrevious value: -"The make id the Managed Equipment Model is associated with"New value: +"JSON request body field — the make id the Managed Equipment Model is associated with" - changed
Input schema / properties / managed_equipment_type_id / descriptionPrevious value: -"The make id the Managed Equipment Model is associated with"New value: +"JSON request body field — the make id the Managed Equipment Model is associated with"
- Changed
bulk_update_managed_equipment_types3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / is_active / descriptionPrevious value: -"If the equipment type is active"New value: +"JSON request body field — if the equipment type is active" - changed
Input schema / properties / managed_equipment_category_id / descriptionPrevious value: -"The category id the Managed Equipment Type is associated with"New value: +"JSON request body field — the category id the Managed Equipment Type is associated with"
- Changed
bulk_update_materials2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / time_and_material_materials / descriptionPrevious value: -"Array of Material objects"New value: +"JSON request body field — array of Material objects"
- Added
bulk_update_project_details_for_company_users_on_projects - Removed
bulk_update_project_details_for_company_users_on_projects_v2_0 - Changed
bulk_update_project_observation_templates5 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Project Observation Template is available for use"New value: +"JSON request body field — flag that denotes if the Project Observation Template is available for use" - changed
Input schema / properties / assignee_id / descriptionPrevious value: -"The ID of the Project Observation Template's Assignee"New value: +"JSON request body field — the ID of the Project Observation Template's Assignee" - changed
Input schema / properties / observation_template_ids / descriptionPrevious value: -"IDs of all Project Observation Templates specified for bulk update"New value: +"Query string parameter — iDs of all Project Observation Templates specified for bulk update" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / trade_id / descriptionPrevious value: -"The ID of the Project Observation Template's Trade"New value: +"JSON request body field — the ID of the Project Observation Template's Trade"
- Added
bulk_update_status_of_equipment_company - Removed
bulk_update_status_of_equipment_company_v2_1 - Added
bulk_update_status_of_equipment_project - Removed
bulk_update_status_of_equipment_project_v2_1 - Changed
bulk_update_subcontractor_invoice_requisitions_items3 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / requisition_id / descriptionPrevious value: -"Requisition ID"New value: +"URL path parameter — unique identifier of the requisition" - changed
Input schema / properties / requisition_items / descriptionPrevious value: -"Requisition Items"New value: +"JSON request body field — the requisition items for this Commitments operation"
- Changed
bulk_update_time_and_material_equipment_logs2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / time_and_material_equipment_logs / descriptionPrevious value: -"Array of Time and material equipment log objects"New value: +"JSON request body field — array of Time and material equipment log objects"
- Changed
bulk_update_time_and_material_timecards2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / time_and_material_timecards / descriptionPrevious value: -"Array of Time and material timecard objects"New value: +"JSON request body field — array of Time and material timecard objects"
- Changed
bulk_update_timecard_entries22 fields changed- changed
Input schema / properties / approval_status / descriptionPrevious value: -"Approval status of a Timecard Entry"New value: +"JSON request body field — approval status of a Timecard Entry" - changed
Input schema / properties / billable / descriptionPrevious value: -"The Billable status of the Timecard Entry"New value: +"JSON request body field — the Billable status of the Timecard Entry" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / cost_code_id / descriptionPrevious value: -"The ID of the Cost Code of the Timecard Entry"New value: +"JSON request body field — the ID of the Cost Code of the Timecard Entry" - changed
Input schema / properties / crew_id / descriptionPrevious value: -"The ID of the crew for the Timecard Entry"New value: +"JSON request body field — the ID of the crew for the Timecard Entry" - changed
Input schema / properties / date / descriptionPrevious value: -"The Date of the Timecard Entry"New value: +"JSON request body field — the Date of the Timecard Entry" - changed
Input schema / properties / description / descriptionPrevious value: -"The description of the Timecard Entry"New value: +"JSON request body field — the description of the Timecard Entry" - changed
Input schema / properties / hours / descriptionPrevious value: -"Hours worked on a Timecard Entry"New value: +"JSON request body field — hours worked on a Timecard Entry" - changed
Input schema / properties / location_id / descriptionPrevious value: -"The location ID for the Timecard Entry"New value: +"JSON request body field — the location ID for the Timecard Entry" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"Value of related external data"New value: +"JSON request body field — value of related external data" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"ID of related external data"New value: +"JSON request body field — iD of related external data" - changed
Input schema / properties / party_id / descriptionPrevious value: -"The ID of the party for the Timecard Entry"New value: +"JSON request body field — the ID of the party for the Timecard Entry" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Timecard Time Type of the Timecard Entry"New value: +"JSON request body field — the ID of the Timecard Time Type of the Timecard Entry" - changed
Input schema / properties / set_timecard_time_type_automatically / descriptionPrevious value: -"Whether or not to allow the automatic overtime management system to apply the configured rules to set the timecard_time_type_id and/or split the timecard entry automatically"New value: +"JSON request body field — whether or not to allow the automatic overtime management system to apply the configured rules to set the timecard_time_type_id and/or split the timecard entry automatically" - changed
Input schema / properties / sub_job_id / descriptionPrevious value: -"The ID of the Sub Job of the Timecard Entry"New value: +"JSON request body field — the ID of the Sub Job of the Timecard Entry" - changed
Input schema / properties / time_in / descriptionPrevious value: -"Time in for the Timecard Entry"New value: +"JSON request body field — time in for the Timecard Entry" - changed
Input schema / properties / time_out / descriptionPrevious value: -"Time out for the Timecard Entry"New value: +"JSON request body field — time out for the Timecard Entry" - changed
Input schema / properties / timecard_time_type_id / descriptionPrevious value: -"The ID of the Timecard Time Type of the Timecard Entry"New value: +"JSON request body field — the ID of the Timecard Time Type of the Timecard Entry" - changed
Input schema / properties / timesheet_id / descriptionPrevious value: -"The ID of the Timesheet of the Timecard Entry"New value: +"JSON request body field — the ID of the Timesheet of the Timecard Entry" - changed
Input schema / properties / updates / descriptionPrevious value: -"The IDs of the timecards you want to update"New value: +"JSON request body field — the IDs of the timecards you want to update" - changed
Input schema / properties / user_id / descriptionPrevious value: -"The ID of the Login Information of the Timecard Entry"New value: +"JSON request body field — the ID of the Login Information of the Timecard Entry" - changed
Input schema / properties / work_classification_id / descriptionPrevious value: -"The ID of the Work Classification of the Timecard Entry"New value: +"JSON request body field — the ID of the Work Classification of the Timecard Entry"
- Changed
bulk_update_wbs_codes3 fields changed- changed
Input schema / properties / attributes / descriptionPrevious value: -"attributes"New value: +"JSON request body field — the attributes for this Work Breakdown Structure operation" - changed
Input schema / properties / ids / descriptionPrevious value: -"WBS Code IDs"New value: +"JSON request body field — wBS Code IDs" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
bulk_update_work_activities3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Work Activities are available for use"New value: +"JSON request body field — flag that denotes if the Work Activities are available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / ids / descriptionPrevious value: -"ids"New value: +"JSON request body field — the ids for this Incidents operation"
- Changed
bulk_updates_for_daily_logs19 fields changed- changed
Input schema / properties / accident_log / descriptionPrevious value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type" - changed
Input schema / properties / call_log / descriptionPrevious value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type" - changed
Input schema / properties / daily_construction_report_log / descriptionPrevious value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type" - changed
Input schema / properties / delay_log / descriptionPrevious value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type" - changed
Input schema / properties / delivery_log / descriptionPrevious value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type" - changed
Input schema / properties / dumpster_log / descriptionPrevious value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type" - changed
Input schema / properties / equipment_log / descriptionPrevious value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type" - changed
Input schema / properties / inspection_log / descriptionPrevious value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type" - changed
Input schema / properties / manpower_log / descriptionPrevious value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type" - changed
Input schema / properties / notes_log / descriptionPrevious value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type" - changed
Input schema / properties / plan_revision_log / descriptionPrevious value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type" - changed
Input schema / properties / productivity_log / descriptionPrevious value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity_log / descriptionPrevious value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type" - changed
Input schema / properties / safety_violation_log / descriptionPrevious value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type" - changed
Input schema / properties / timecard_entry / descriptionPrevious value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type" - changed
Input schema / properties / visitor_log / descriptionPrevious value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type" - changed
Input schema / properties / waste_log / descriptionPrevious value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type" - changed
Input schema / properties / work_log / descriptionPrevious value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
- Changed
calculate_number_of_inspections_to_create_based_on_schedule6 fields changed- changed
Input schema / properties / ends_at / descriptionPrevious value: -"Schedule end date"New value: +"JSON request body field — schedule end date" - changed
Input schema / properties / frequency / descriptionPrevious value: -"Schedule frequency type name"New value: +"JSON request body field — schedule frequency type name" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / starts_at / descriptionPrevious value: -"Schedule start date"New value: +"JSON request body field — schedule start date"
- Changed
calculate_when_the_first_inspection_of_an_inspection_schedule7 fields changed- changed
Input schema / properties / days_created_before_due_date / descriptionPrevious value: -"Number of days before the inspection due date that the inspection should be created"New value: +"JSON request body field — number of days before the inspection due date that the inspection should be created" - changed
Input schema / properties / ends_at / descriptionPrevious value: -"Schedule end date. When frequency is 'once' this should be the same value as starts_at."New value: +"JSON request body field — schedule end date. When frequency is 'once' this should be the same value as starts_at." - changed
Input schema / properties / frequency / descriptionPrevious value: -"Schedule frequency type name"New value: +"JSON request body field — schedule frequency type name" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / starts_at / descriptionPrevious value: -"Schedule start date"New value: +"JSON request body field — schedule start date"
- Changed
change_history4 fields changed- changed
Input schema / properties / ids / descriptionPrevious value: -"ids"New value: +"JSON request body field — the ids for this Field Productivity operation" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
check_company_zone2 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Added
check_csv_export_status_for_commitment_change_order_rows - Removed
check_csv_export_status_for_commitment_change_order_rows_v2_0 - Added
check_csv_export_status_for_prime_change_order_rows - Removed
check_csv_export_status_for_prime_change_order_rows_v2_0 - Removed
check_if_number_and_revision_entered_are_available_or - Added
check_if_number_and_revision_entered_are_available_or_duplicated - Added
check_pdf_generation_status_project - Added
check_pdf_generation_status_project_v2_0 - Added
check_pdf_generation_status_project_v2_0_2 - Added
check_pdf_generation_status_project_v2_0_4 - Added
check_pdf_generation_status_project_v2_0_5 - Added
check_pdf_generation_status_project_v2_0_6 - Removed
check_pdf_generation_status_v2_0_project - Removed
check_pdf_generation_status_v2_0_project_v2_0 - Removed
check_pdf_generation_status_v2_0_project_v2_0_2 - Removed
check_pdf_generation_status_v2_0_project_v2_0_4 - Removed
check_pdf_generation_status_v2_0_project_v2_0_5 - Removed
check_pdf_generation_status_v2_0_project_v2_0_6 - Changed
checklist_schedule_assignee_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
checklist_schedule_equipment_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
checklist_schedule_inspection_template_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
checklist_schedule_inspection_type_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
checklist_schedule_location_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
clone_bid_board_project - Removed
clone_bid_board_project_v2_0 - Added
clone_change_event - Removed
clone_change_event_v1_1 - Changed
clones_daily_logs_from_one_date_to_another_date6 fields changed- changed
Input schema / properties / Idempotency-Token / descriptionPrevious value: -"Unique idempotent token"New value: +"JSON request body field — unique idempotent token" - changed
Input schema / properties / daily_log_segment_id / descriptionPrevious value: -"Optional. The ID of the daily log area to filter logs by. \nOnly logs belonging to the specified area will be copied.\nIf the area has associated log types, only those log types will be allowed.\n"New value: +"JSON request body field — optional. The ID of the daily log area to filter logs by. \nOnly logs belonging to the specified area will be copied.\nIf the area has associated log types, only those log types will be allowed.\n" - changed
Input schema / properties / from_date / descriptionPrevious value: -"Date to copy logs from in YYYY-MM-DD format"New value: +"JSON request body field — date to copy logs from in YYYY-MM-DD format" - changed
Input schema / properties / log_types / descriptionPrevious value: -"Log types to copy. More than one log type can be provided.\n"New value: +"JSON request body field — log types to copy. More than one log type can be provided.\n" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / to_date / descriptionPrevious value: -"Date to copy logs to in YYYY-MM-DD format"New value: +"JSON request body field — date to copy logs to in YYYY-MM-DD format"
- Changed
close_and_distribute_a_submittal_log8 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Submittal ID"New value: +"URL path parameter — unique identifier of the Submittals resource" - changed
Input schema / properties / message / descriptionPrevious value: -"message"New value: +"JSON request body field — the message for this Submittals operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / prostore_file_ids / descriptionPrevious value: -"prostore_file_ids"New value: +"JSON request body field — array of prostore file identifiers" - changed
Input schema / properties / recipient_ids / descriptionPrevious value: -"recipient_ids"New value: +"JSON request body field — array of recipient identifiers" - changed
Input schema / properties / selected_approvers / descriptionPrevious value: -"selected_approvers"New value: +"JSON request body field — the selected approvers for this Submittals operation" - changed
Input schema / properties / submittal_description / descriptionPrevious value: -"submittal_description"New value: +"JSON request body field — submittal_description" - changed
Input schema / properties / submittal_log_status_id / descriptionPrevious value: -"submittal_log_status_id"New value: +"JSON request body field — submittal_log_status_id"
- Changed
company_folder_and_file_index15 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / company_id / typePrevious value: -"number"New value: +"string" - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Return item(s) created by the specified User IDs"New value: +"Query string parameter — return item(s) created by the specified User IDs" - changed
Input schema / properties / filters__document_type / descriptionPrevious value: -"Return item(s) that are file or folder"New value: +"Query string parameter — return item(s) that are file or folder" - changed
Input schema / properties / filters__file_type / descriptionPrevious value: -"Return item(s) that have the file extensions"New value: +"Query string parameter — return item(s) that have the file extensions" - changed
Input schema / properties / filters__folder_id / descriptionPrevious value: -"Returns the folder for a given id with all subfolders and subfiles up to a depth of 100. Depths greater than 100 will need multiple queries to get all children."New value: +"Query string parameter — returns the folder for a given id with all subfolders and subfiles up to a depth of 100. Depths greater than 100 will need multiple queries to get all children." - changed
Input schema / properties / filters__folder_id / typePrevious value: -"number"New value: +"string" - changed
Input schema / properties / filters__is_in_recycle_bin / descriptionPrevious value: -"Return item(s) that are in or not in the recycle bin"New value: +"Query string parameter — return item(s) that are in or not in the recycle bin" - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Return item(s) that contain string in document name and file description"New value: +"Query string parameter — returns item(s) matching the specified search query string." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Field to sort by. If the field is passed with a - (EX: -updated_at) it is sorted in reverse order"New value: +"Query string parameter — field to sort by. If the field is passed with a - (EX: -updated_at) it is sorted in reverse order" - changed
Input schema / properties / view / descriptionPrevious value: -"Determines how much information to include in the response. `normal` is the default, `extended` provides additional data. The example below shows the `extended` response."New value: +"Query string parameter — determines how much information to include in the response. `normal` is the default, `extended` provides additional data. The example below shows the `extended` response."
- Removed
company_folder_and_file_index_v2_0 - Removed
configuration_of_specifications_tool_v2_0 - Changed
convert_private_layer_to_public3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / layer_id / descriptionPrevious value: -"layer_id"New value: +"URL path parameter — unique identifier of the layer" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
copy_from_standard_cost_code_list3 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / standard_cost_code_list_id / descriptionPrevious value: -"Unique identifier for the Standard Cost Code List"New value: +"JSON request body field — unique identifier for the Standard Cost Code List" - changed
Input schema / properties / sub_job_id / descriptionPrevious value: -"Unique identifier for the Sub Job"New value: +"JSON request body field — unique identifier for the Sub Job"
- Changed
copy_subset_from_standard_cost_code_list4 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the project biller"New value: +"JSON request body field — the ID of the project biller" - changed
Input schema / properties / standard_cost_code_ids / descriptionPrevious value: -"A list of the standard cost code ids to add to biller (must include the ancestors of any standard cost code in this list)"New value: +"JSON request body field — a list of the standard cost code ids to add to biller (must include the ancestors of any standard cost code in this list)" - changed
Input schema / properties / standard_cost_code_list_id / descriptionPrevious value: -"The ID of the standard cost code list id"New value: +"JSON request body field — the ID of the standard cost code list id" - changed
Input schema / properties / sub_job_id / descriptionPrevious value: -"The ID of the subjob biller"New value: +"JSON request body field — the ID of the subjob biller"
- Changed
create_a_batch_of_bim_levels3 fields changed- changed
Input schema / properties / bim_levels / descriptionPrevious value: -"An array of BIM Level payloads"New value: +"JSON request body field — an array of BIM Level payloads" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Specify response schema view"New value: +"JSON request body field — specify response schema view"
- Changed
create_a_batch_of_bim_model_revision_plans2 fields changed- changed
Input schema / properties / bim_model_revision_plans / descriptionPrevious value: -"An array of BIM Model Revision Plan payloads"New value: +"JSON request body field — an array of BIM Model Revision Plan payloads" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_a_batch_of_bim_model_revision_viewpoints2 fields changed- changed
Input schema / properties / bim_model_revision_viewpoints / descriptionPrevious value: -"An array of BIM Model Revision Viewpoint payloads"New value: +"JSON request body field — an array of BIM Model Revision Viewpoint payloads" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_a_batch_of_bim_plans3 fields changed- changed
Input schema / properties / bim_plans / descriptionPrevious value: -"An array of BIM Plan payloads"New value: +"JSON request body field — an array of BIM Plan payloads" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Specify response schema view"New value: +"JSON request body field — specify response schema view"
- Changed
create_a_batch_of_bim_view_folder_by_path3 fields changed- changed
Input schema / properties / bim_view_folders / descriptionPrevious value: -"An array of nested BIM View Folder payload"New value: +"JSON request body field — an array of nested BIM View Folder payload" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Specify response schema view"New value: +"JSON request body field — specify response schema view"
- Changed
create_a_batch_of_bim_viewpoints2 fields changed- changed
Input schema / properties / bim_viewpoints / descriptionPrevious value: -"An array of BIM Viewpoint payloads. Limited to 100 items per request"New value: +"JSON request body field — an array of BIM Viewpoint payloads. Limited to 100 items per request" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_a_bid_form10 fields changed- changed
Input schema / properties / alternates / descriptionPrevious value: -"Alternate bids"New value: +"JSON request body field — alternate bids" - changed
Input schema / properties / base_bid / descriptionPrevious value: -"Base Bids"New value: +"JSON request body field — base Bids" - changed
Input schema / properties / bid_package_id / descriptionPrevious value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package" - added
Input schema / properties / lock_quantity_fields_alternatesAdded value: +{ + "description": "JSON request body field — lock quantity fields for all alternate items. Must be sent explicitly (no inheritance from bid package). Defaults to false if not provided.", + "type": "boolean" +} - added
Input schema / properties / lock_quantity_fields_base_bidAdded value: +{ + "description": "JSON request body field — lock quantity fields for all base bid items. Must be sent explicitly (no inheritance from bid package). Defaults to false if not provided.", + "type": "boolean" +} - added
Input schema / properties / lock_unit_fields_alternatesAdded value: +{ + "description": "JSON request body field — lock unit fields for all alternate items. Must be sent explicitly (no inheritance from bid package). Defaults to false if not provided.", + "type": "boolean" +} - added
Input schema / properties / lock_unit_fields_base_bidAdded value: +{ + "description": "JSON request body field — lock unit fields for all base bid items. Must be sent explicitly (no inheritance from bid package). Defaults to false if not provided.", + "type": "boolean" +} - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - added
Input schema / properties / proposal_idAdded value: +{ + "description": "JSON request body field — unique identifier of the proposal", + "type": "number" +} - changed
Input schema / properties / title / descriptionPrevious value: -"Bid Form Title"New value: +"JSON request body field — bid Form Title"
- Removed
create_a_bid_form_v1_1 - Changed
create_a_bim_viewpoint2 fields changed- changed
Input schema / properties / bim_viewpoint / descriptionPrevious value: -"bim_viewpoint"New value: +"JSON request body field — the bim viewpoint for this BIM operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_a_budget_change8 fields changed- changed
Input schema / properties / adjustment_line_items / descriptionPrevious value: -"List of budget change line items. todo this key be renamed to line_items in the future"New value: +"JSON request body field — list of budget change line items. todo this key be renamed to line_items in the future" - changed
Input schema / properties / description / descriptionPrevious value: -"Description of budget change in HTML format"New value: +"JSON request body field — description of budget change in HTML format" - changed
Input schema / properties / number / descriptionPrevious value: -"Number field of budget change. If not provided, it will be assigned."New value: +"JSON request body field — number field of budget change. If not provided, it will be assigned." - changed
Input schema / properties / production_quantities / descriptionPrevious value: -"List of budget change production quantities"New value: +"JSON request body field — list of budget change production quantities" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / prostore_file_ids / descriptionPrevious value: -"The prostore file identifiers that will be associated with this budget change as attachments"New value: +"JSON request body field — the prostore file identifiers that will be associated with this budget change as attachments" - changed
Input schema / properties / status / descriptionPrevious value: -"Status of budget change"New value: +"JSON request body field — status of budget change" - changed
Input schema / properties / title / descriptionPrevious value: -"Title of budget change"New value: +"JSON request body field — title of budget change"
- Changed
create_a_budget_lock1 field changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_a_budget_view_snapshot8 fields changed- changed
Input schema / properties / approval_status / descriptionPrevious value: -"Approval Status.\n"New value: +"JSON request body field — approval Status.\n" - changed
Input schema / properties / budget_template_id / descriptionPrevious value: -"The budget template identifier (deprecated, use budget_view_id instead)"New value: +"JSON request body field — the budget template identifier (deprecated, use budget_view_id instead)" - changed
Input schema / properties / budget_view_id / descriptionPrevious value: -"The budget view identifier (replaces budget_template_id)"New value: +"JSON request body field — the budget view identifier (replaces budget_template_id)" - changed
Input schema / properties / description / descriptionPrevious value: -"Description of the budget snapshot"New value: +"JSON request body field — description of the budget snapshot" - changed
Input schema / properties / name / descriptionPrevious value: -"Title of the budget view snapshot"New value: +"JSON request body field — title of the budget view snapshot" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The project identifier"New value: +"JSON request body field — the project identifier" - changed
Input schema / properties / snapshot_type / descriptionPrevious value: -"Snapshot Type. Only available when Project Status Snapshots feature is enabled."New value: +"JSON request body field — snapshot Type. Only available when Project Status Snapshots feature is enabled." - changed
Input schema / properties / status_id / descriptionPrevious value: -"The ID of a custom status.\nOnly available when the Custom Statuses feature is enabled. When enabled, use this\nparameter instead of approval_status. The status_id must reference an available\ncustom ..."New value: +"JSON request body field — the ID of a custom status.\nOnly available when the Custom Statuses feature is enabled. When enabled, use this\nparameter instead of approval_status. The status_id must reference an available\ncustom ..."
- Added
create_a_change_order_change_reason - Removed
create_a_change_order_change_reason_v2_0 - Changed
create_a_checklist_inspection_schedule14 fields changed- changed
Input schema / properties / assignee_ids / descriptionPrevious value: -"assignee_ids"New value: +"JSON request body field — array of assignee identifiers" - changed
Input schema / properties / days_created_before_due_date / descriptionPrevious value: -"The number of days an Inspection is to be created before the due date"New value: +"JSON request body field — the number of days an Inspection is to be created before the due date" - changed
Input schema / properties / distribution_member_ids / descriptionPrevious value: -"distribution_member_ids"New value: +"JSON request body field — distribution_member_ids" - changed
Input schema / properties / ends_at / descriptionPrevious value: -"Timestamp indicating when the last Inspection in the Schedule should be due. Not used when frequency is once."New value: +"JSON request body field — timestamp indicating when the last Inspection in the Schedule should be due. Not used when frequency is once." - changed
Input schema / properties / equipment_id / descriptionPrevious value: -"The ID of the Equipment to set on the Schedule."New value: +"JSON request body field — the ID of the Equipment to set on the Schedule." - changed
Input schema / properties / first_inspection_due_at / descriptionPrevious value: -"Timestamp indicating when the first Inspection in the Schedule should be due. Cannot be in the past."New value: +"JSON request body field — timestamp indicating when the first Inspection in the Schedule should be due. Cannot be in the past." - changed
Input schema / properties / frequency / descriptionPrevious value: -"The frequency at which Inspections will be created by the Schedule."New value: +"JSON request body field — the frequency at which Inspections will be created by the Schedule." - changed
Input schema / properties / inspection_template_id / descriptionPrevious value: -"The ID of the Inspection Template to create the Schedule from."New value: +"JSON request body field — the ID of the Inspection Template to create the Schedule from." - changed
Input schema / properties / location_id / descriptionPrevious value: -"The ID of the Location to set on the Schedule."New value: +"JSON request body field — the ID of the Location to set on the Schedule." - changed
Input schema / properties / name / descriptionPrevious value: -"The name for the Checklist Schedule."New value: +"JSON request body field — the name for the Checklist Schedule." - changed
Input schema / properties / point_of_contact_id / descriptionPrevious value: -"The ID of a User to be set as the of the point of contact on the Schedule"New value: +"JSON request body field — the ID of a User to be set as the of the point of contact on the Schedule" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / responsible_contractor_id / descriptionPrevious value: -"The ID of a vendor to set as the responsible contractor on the Schedule."New value: +"JSON request body field — the ID of a vendor to set as the responsible contractor on the Schedule." - changed
Input schema / properties / specification_section_id / descriptionPrevious value: -"The ID of the specification section to set on the Schedule."New value: +"JSON request body field — the ID of the specification section to set on the Schedule."
- Changed
create_a_company_action_plan_type3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Indicates if the Action Plan Type is intended for use"New value: +"JSON request body field — indicates if the Action Plan Type is intended for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"Name"New value: +"JSON request body field — the name for this Action Plans operation"
- Changed
create_a_company_wbs_segment5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"Segment Name"New value: +"JSON request body field — segment Name" - changed
Input schema / properties / project_can_delete_origin_company / descriptionPrevious value: -"Whether Segment Items inherited from the company-level are able to be deleted from a Project."New value: +"JSON request body field — whether Segment Items inherited from the company-level are able to be deleted from a Project." - changed
Input schema / properties / project_can_modify_origin_project / descriptionPrevious value: -"Whether project-specific Segment Items are able to be added/edited/removed from a Project."New value: +"JSON request body field — whether project-specific Segment Items are able to be added/edited/removed from a Project." - changed
Input schema / properties / structure / descriptionPrevious value: -"The Structure for this Wbs Segment."New value: +"JSON request body field — the Structure for this Wbs Segment."
- Changed
create_a_compliance_document_project15 fields changed- changed
Input schema / properties / attachment_ids / descriptionPrevious value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response" - changed
Input schema / properties / contract_id / descriptionPrevious value: -"identifier for the commitment contract"New value: +"URL path parameter — identifier for the commitment contract" - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / effective_at / descriptionPrevious value: -"effective_at"New value: +"JSON request body field — the effective at for this Commitments operation" - changed
Input schema / properties / expires_at / descriptionPrevious value: -"expires_at"New value: +"JSON request body field — the expires at for this Commitments operation" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / name / descriptionPrevious value: -"name"New value: +"JSON request body field — the name for this Commitments operation" - changed
Input schema / properties / notes / descriptionPrevious value: -"notes"New value: +"JSON request body field — the notes for this Commitments operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / send_expiration_notification / descriptionPrevious value: -"send_expiration_notification"New value: +"JSON request body field — send_expiration_notification" - changed
Input schema / properties / status / descriptionPrevious value: -"status"New value: +"JSON request body field — the status for this Commitments operation" - changed
Input schema / properties / type / descriptionPrevious value: -"type"New value: +"JSON request body field — the type for this Commitments operation" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
- Changed
create_a_compliance_document_project_v1_015 fields changed- changed
Input schema / properties / attachment_ids / descriptionPrevious value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response" - changed
Input schema / properties / contract_id / descriptionPrevious value: -"identifier for the commitment contract"New value: +"URL path parameter — identifier for the commitment contract" - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / effective_at / descriptionPrevious value: -"effective_at"New value: +"JSON request body field — the effective at for this Commitments operation" - changed
Input schema / properties / expires_at / descriptionPrevious value: -"expires_at"New value: +"JSON request body field — the expires at for this Commitments operation" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / name / descriptionPrevious value: -"name"New value: +"JSON request body field — the name for this Commitments operation" - changed
Input schema / properties / notes / descriptionPrevious value: -"notes"New value: +"JSON request body field — the notes for this Commitments operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / send_expiration_notification / descriptionPrevious value: -"send_expiration_notification"New value: +"JSON request body field — send_expiration_notification" - changed
Input schema / properties / status / descriptionPrevious value: -"status"New value: +"JSON request body field — the status for this Commitments operation" - changed
Input schema / properties / type / descriptionPrevious value: -"type"New value: +"JSON request body field — the type for this Commitments operation" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
- Added
create_a_coordination_issue_rest_v2_0 - Removed
create_a_coordination_issue_rest_v2_0_v2_0 - Changed
create_a_copy_of_the_action_plan_item_in_the_items_section2 fields changed- changed
Input schema / properties / plan_item_id / descriptionPrevious value: -"ID of the Action Plan Item to copy from."New value: +"JSON request body field — iD of the Action Plan Item to copy from." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_a_copy_of_the_action_plan_section_in_the_action_plan_of3 fields changed- changed
Input schema / properties / plan_section_id / descriptionPrevious value: -"ID of the Action Plan Section to copy from."New value: +"JSON request body field — iD of the Action Plan Section to copy from." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view (which attributes) of the Action Plan Section is going to be present in the response.\n- `normal` (default): Returns standard Action Plan Section attributes\n- `extended`: Return..."New value: +"Query string parameter — specifies which view (which attributes) of the Action Plan Section is going to be present in the response.\n- `normal` (default): Returns standard Action Plan Section attributes\n- `extended`: Return..."
- Changed
create_a_copy_of_the_action_plan_template_item_in_the_items2 fields changed- changed
Input schema / properties / plan_template_item_id / descriptionPrevious value: -"ID of the Action Plan Template Item to copy from."New value: +"JSON request body field — iD of the Action Plan Template Item to copy from." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_a_copy_of_the_action_plan_template_item_in_the_items_22 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / plan_template_item_id / descriptionPrevious value: -"ID of the Action Plan Template Item to copy from."New value: +"JSON request body field — iD of the Action Plan Template Item to copy from."
- Changed
create_a_copy_of_the_action_plan_template_section_in_the_company2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / template_section_id / descriptionPrevious value: -"ID of the Action Plan Template Section to copy from."New value: +"JSON request body field — iD of the Action Plan Template Section to copy from."
- Changed
create_a_copy_of_the_action_plan_template_section_in_the_project2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / template_section_id / descriptionPrevious value: -"ID of the Action Plan Template Section to copy from."New value: +"JSON request body field — iD of the Action Plan Template Section to copy from."
- Changed
create_a_job_title7 fields changed- changed
Input schema / properties / color / descriptionPrevious value: -"Hexadecimal color code for the Job Title. Helps with categorization and visual distinction.\n"New value: +"JSON request body field — hexadecimal color code for the Job Title. Helps with categorization and visual distinction.\n" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / globally_accessible / descriptionPrevious value: -"Controls whether the Job Title should be globally available to all current and future Groups."New value: +"JSON request body field — controls whether the Job Title should be globally available to all current and future Groups." - changed
Input schema / properties / group_ids / descriptionPrevious value: -"Array of UUIDs for which Groups this Job Title should be available to. If `globally_accessible` is set to `true`, this value can be an empty array."New value: +"JSON request body field — array of UUIDs for which Groups this Job Title should be available to. If `globally_accessible` is set to `true`, this value can be an empty array." - changed
Input schema / properties / hourly_rate / descriptionPrevious value: -"The rate value that will be factored into cost calculations for any person who has this job title applied and doesn't already have a standalone hourly wage value. This is also handy for costing man..."New value: +"JSON request body field — the rate value that will be factored into cost calculations for any person who has this job title applied and doesn't already have a standalone hourly wage value. This is also handy for costing man..." - changed
Input schema / properties / name / descriptionPrevious value: -"The name of the Job Title."New value: +"JSON request body field — the name of the Job Title." - changed
Input schema / properties / type / descriptionPrevious value: -"Indicates whether the Job Title is salaried or hourly."New value: +"JSON request body field — indicates whether the Job Title is salaried or hourly."
- Added
create_a_line_item_group_in_the_proposal_company - Added
create_a_line_item_group_in_the_proposal_project - Removed
create_a_line_item_group_in_the_proposal_v2_0_company - Removed
create_a_line_item_group_in_the_proposal_v2_0_project - Changed
create_a_manual_forecast_line_item8 fields changed- changed
Input schema / properties / amount / descriptionPrevious value: -"Total amount"New value: +"JSON request body field — total amount" - changed
Input schema / properties / budget_line_item_id / descriptionPrevious value: -"Identifier of the parent budget line item. NOTE - budget line item id or wbs code id is required"New value: +"JSON request body field — identifier of the parent budget line item. NOTE - budget line item id or wbs code id is required" - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Budget operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity / descriptionPrevious value: -"Quantity"New value: +"JSON request body field — the quantity for this Budget operation" - changed
Input schema / properties / unit_cost / descriptionPrevious value: -"Unit cost"New value: +"JSON request body field — the unit cost for this Budget operation" - changed
Input schema / properties / uom / descriptionPrevious value: -"Unit of measure"New value: +"JSON request body field — unit of measure" - changed
Input schema / properties / wbs_code_id / descriptionPrevious value: -"Wbs code id of the parent budget line item. NOTE - budget line item id or wbs code id is required"New value: +"JSON request body field — wbs code id of the parent budget line item. NOTE - budget line item id or wbs code id is required"
- Changed
create_a_manual_hold_for_a_given_invoice2 fields changed- changed
Input schema / properties / invoice_id / descriptionPrevious value: -"Unique identifier of the invoice. This is required if the hold_type is invoice"New value: +"Query string parameter — unique identifier of the invoice. This is required if the hold_type is invoice" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_a_model_manager_viewpoint_and_link_it_to_the_issue_rest17 fields changed- changed
Input schema / properties / bim_file_id / descriptionPrevious value: -"Accepted in the JSON body for parity with other viewpoint APIs; **not** applied by MM create in this flow.\n"New value: +"JSON request body field — accepted in the JSON body for parity with other viewpoint APIs; **not** applied by MM create in this flow.\n" - changed
Input schema / properties / bim_model_uuid / descriptionPrevious value: -"Required by Procore `ViewpointCreateViaModelManagerService` validation (not sent to MM create as a top-level field)."New value: +"JSON request body field — required by Procore `ViewpointCreateViaModelManagerService` validation (not sent to MM create as a top-level field)." - changed
Input schema / properties / bim_view_folder_id / descriptionPrevious value: -"Accepted in the JSON body for parity with other viewpoint APIs; **not** applied by MM create in this flow.\n"New value: +"JSON request body field — accepted in the JSON body for parity with other viewpoint APIs; **not** applied by MM create in this flow.\n" - changed
Input schema / properties / camera_data / descriptionPrevious value: -"Used when top-level `payload` is absent — becomes `camera` in the MM payload. Send a JSON object or a JSON string\n(parsed server-side).\n"New value: +"JSON request body field — used when top-level `payload` is absent — becomes `camera` in the MM payload. Send a JSON object or a JSON string\n(parsed server-side).\n" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / coordination_issue_id / descriptionPrevious value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID" - changed
Input schema / properties / name / descriptionPrevious value: -"Optional viewpoint name (MM `RequestsCreateViewpointRequest.name`)."New value: +"JSON request body field — optional viewpoint name (MM `RequestsCreateViewpointRequest.name`)." - changed
Input schema / properties / payload / descriptionPrevious value: -"payload"New value: +"JSON request body field — the payload for this Coordination Issues operation" - changed
Input schema / properties / position / descriptionPrevious value: -"Sets ordering `position` on the coordination-issue viewpoint mapping (auto-incremented if omitted)."New value: +"JSON request body field — sets ordering `position` on the coordination-issue viewpoint mapping (auto-incremented if omitted)." - changed
Input schema / properties / primary / descriptionPrevious value: -"Sets `is_primary` on the coordination-issue viewpoint mapping."New value: +"JSON request body field — sets `is_primary` on the coordination-issue viewpoint mapping." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / redlines_data / descriptionPrevious value: -"Used when top-level `payload` is absent — becomes `markup` in the MM payload (object or JSON string)."New value: +"JSON request body field — used when top-level `payload` is absent — becomes `markup` in the MM payload (object or JSON string)." - changed
Input schema / properties / render_mode / descriptionPrevious value: -"render_mode"New value: +"JSON request body field — the render mode for this Coordination Issues operation" - changed
Input schema / properties / scene_id / descriptionPrevious value: -"Scene UUID (MM `scene_id` / `UuidUUID`)."New value: +"JSON request body field — scene UUID (MM `scene_id` / `UuidUUID`)." - changed
Input schema / properties / sections_data / descriptionPrevious value: -"Used when top-level `payload` is absent — parsed value is set on `clipping.planes` in the MM payload.\nModel Manager expects an array of clipping planes (`TypesClippingPlane`); object or JSON string..."New value: +"JSON request body field — used when top-level `payload` is absent — parsed value is set on `clipping.planes` in the MM payload.\nModel Manager expects an array of clipping planes (`TypesClippingPlane`); object or JSON string..." - changed
Input schema / properties / snapshot_upload_uuid / descriptionPrevious value: -"Accepted in the JSON body; **not** applied by MM create in this flow unless part of `payload`."New value: +"JSON request body field — accepted in the JSON body; **not** applied by MM create in this flow unless part of `payload`." - changed
Input schema / properties / visibility / descriptionPrevious value: -"visibility"New value: +"JSON request body field — the visibility for this Coordination Issues operation"
- Changed
create_a_new_budgeted_production_quantity5 fields changed- changed
Input schema / properties / cost_code_id / descriptionPrevious value: -"CostCode. DO NOT provide if your project is configured for Task Codes."New value: +"JSON request body field — costCode. DO NOT provide if your project is configured for Task Codes." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Project"New value: +"JSON request body field — unique identifier for the Procore project" - changed
Input schema / properties / quantity / descriptionPrevious value: -"Quantity budgeted for a project cost code"New value: +"JSON request body field — quantity budgeted for a project cost code" - changed
Input schema / properties / unit_of_measure / descriptionPrevious value: -"Unit of Measure"New value: +"JSON request body field — the unit of measure for this Budget operation" - changed
Input schema / properties / wbs_code_id / descriptionPrevious value: -"The Production Quantity Code for the Budgeted Production Quantity. This is necessary if your project is configured for Task Codes. DO NOT provide if your project is not configured for Task Codes."New value: +"JSON request body field — the Production Quantity Code for the Budgeted Production Quantity. This is necessary if your project is configured for Task Codes. DO NOT provide if your project is not configured for Task Codes."
- Changed
create_a_new_classification4 fields changed- changed
Input schema / properties / abbreviation / descriptionPrevious value: -"The shortened form of classification"New value: +"JSON request body field — the shortened form of classification" - changed
Input schema / properties / is_active / descriptionPrevious value: -"Is the classification active or not"New value: +"JSON request body field — is the classification active or not" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the classification"New value: +"JSON request body field — name of the classification" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_a_new_context8 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / context_type / descriptionPrevious value: -"context_type"New value: +"JSON request body field — the context type for this Document Markup operation" - changed
Input schema / properties / context_type_id / descriptionPrevious value: -"context_type_id"New value: +"JSON request body field — unique identifier of the context type" - changed
Input schema / properties / name / descriptionPrevious value: -"name"New value: +"JSON request body field — the name for this Document Markup operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / settings / descriptionPrevious value: -"settings"New value: +"JSON request body field — the settings for this Document Markup operation" - changed
Input schema / properties / sub_context_type / descriptionPrevious value: -"sub_context_type"New value: +"JSON request body field — the sub context type for this Document Markup operation" - changed
Input schema / properties / sub_context_type_id / descriptionPrevious value: -"sub_context_type_id"New value: +"JSON request body field — unique identifier of the sub context type"
- Changed
create_a_new_crew5 fields changed- changed
Input schema / properties / equipment_ids / descriptionPrevious value: -"equipment_ids"New value: +"JSON request body field — array of equipment identifiers" - changed
Input schema / properties / lead_party_id / descriptionPrevious value: -"Party Id of crew leader"New value: +"JSON request body field — party Id of crew leader" - changed
Input schema / properties / name / descriptionPrevious value: -"Crew Name"New value: +"JSON request body field — crew Name" - changed
Input schema / properties / party_ids / descriptionPrevious value: -"party_ids"New value: +"JSON request body field — array of party identifiers" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_a_new_equipment15 fields changed- changed
Input schema / properties / company_visible / descriptionPrevious value: -"Company visible"New value: +"JSON request body field — the company visible for this Field Productivity operation" - changed
Input schema / properties / current_project_id / descriptionPrevious value: -"ID of the project the equipment is currently dispatched to"New value: +"JSON request body field — iD of the project the equipment is currently dispatched to" - changed
Input schema / properties / description / descriptionPrevious value: -"description of the equipment"New value: +"JSON request body field — description of the equipment" - changed
Input schema / properties / identification_number / descriptionPrevious value: -"Identification number of the equipment"New value: +"JSON request body field — identification number of the equipment" - changed
Input schema / properties / managed_equipment_category_id / descriptionPrevious value: -"ID of the equipment category"New value: +"JSON request body field — iD of the equipment category" - changed
Input schema / properties / managed_equipment_make_id / descriptionPrevious value: -"ID of the equipment make"New value: +"JSON request body field — iD of the equipment make" - changed
Input schema / properties / managed_equipment_model_id / descriptionPrevious value: -"ID of the equipment model"New value: +"JSON request body field — iD of the equipment model" - changed
Input schema / properties / managed_equipment_type_id / descriptionPrevious value: -"ID of the equipment type"New value: +"JSON request body field — iD of the equipment type" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the equipment"New value: +"JSON request body field — name of the equipment" - changed
Input schema / properties / ownership / descriptionPrevious value: -"The type of ownership"New value: +"JSON request body field — the type of ownership" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / serial_number / descriptionPrevious value: -"Serial number of the equipment"New value: +"JSON request body field — serial number of the equipment" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Field Productivity operation" - changed
Input schema / properties / upload_uuids / descriptionPrevious value: -"Array of upload uuids"New value: +"JSON request body field — array of upload uuids" - changed
Input schema / properties / year / descriptionPrevious value: -"Year the equipment was manufactured in"New value: +"JSON request body field — year the equipment was manufactured in"
- Changed
create_a_new_group8 fields changed- changed
Input schema / properties / color / descriptionPrevious value: -"color"New value: +"JSON request body field — the color for this Document Markup operation" - changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / layer_id / descriptionPrevious value: -"layer_id"New value: +"JSON request body field — unique identifier of the layer" - changed
Input schema / properties / name / descriptionPrevious value: -"name"New value: +"JSON request body field — the name for this Document Markup operation" - changed
Input schema / properties / order_index / descriptionPrevious value: -"order_index"New value: +"JSON request body field — the order index for this Document Markup operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / settings / descriptionPrevious value: -"settings"New value: +"JSON request body field — the settings for this Document Markup operation" - changed
Input schema / properties / visibility / descriptionPrevious value: -"visibility"New value: +"JSON request body field — the visibility for this Document Markup operation"
- Changed
create_a_new_layer8 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / context_id / descriptionPrevious value: -"context_id"New value: +"JSON request body field — unique identifier of the context" - changed
Input schema / properties / name / descriptionPrevious value: -"name"New value: +"JSON request body field — the name for this Document Markup operation" - changed
Input schema / properties / order_index / descriptionPrevious value: -"order_index"New value: +"JSON request body field — the order index for this Document Markup operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / settings / descriptionPrevious value: -"settings"New value: +"JSON request body field — the settings for this Document Markup operation" - changed
Input schema / properties / type / descriptionPrevious value: -"type"New value: +"JSON request body field — the type for this Document Markup operation" - changed
Input schema / properties / visibility / descriptionPrevious value: -"visibility"New value: +"JSON request body field — the visibility for this Document Markup operation"
- Added
create_a_new_maintenance_record_company - Removed
create_a_new_maintenance_record_company_v2_0 - Added
create_a_new_maintenance_record_project - Removed
create_a_new_maintenance_record_project_v2_0 - Changed
create_a_new_time_and_material_entry18 fields changed- changed
Input schema / properties / company_signature_id / descriptionPrevious value: -"The ID associate with company's signature"New value: +"JSON request body field — the ID associate with company's signature" - changed
Input schema / properties / company_signee_party_id / descriptionPrevious value: -"The ID associate with company's signature party"New value: +"JSON request body field — the ID associate with company's signature party" - changed
Input schema / properties / customer_signature_id / descriptionPrevious value: -"The ID associate with customer's signature"New value: +"JSON request body field — the ID associate with customer's signature" - changed
Input schema / properties / customer_signee_party_id / descriptionPrevious value: -"The ID associate with customer's signature party"New value: +"JSON request body field — the ID associate with customer's signature party" - changed
Input schema / properties / description / descriptionPrevious value: -"The description of job"New value: +"JSON request body field — the description of job" - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / name / descriptionPrevious value: -"The title of T&M ticket"New value: +"JSON request body field — the title of T&M ticket" - changed
Input schema / properties / number / descriptionPrevious value: -"Unique number for the T&M ticket"New value: +"JSON request body field — unique number for the T&M ticket" - changed
Input schema / properties / private / descriptionPrevious value: -"If the T&M ticket is private"New value: +"JSON request body field — if the T&M ticket is private" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / reference_number / descriptionPrevious value: -"The refrence number associate with T&M ticket"New value: +"JSON request body field — the refrence number associate with T&M ticket" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / status / descriptionPrevious value: -"Current status of T&M ticket"New value: +"JSON request body field — current status of T&M ticket" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"The specified array of upload ids is saved as Time And Material Entry Attachments."New value: +"JSON request body field — the specified array of upload ids is saved as Time And Material Entry Attachments." - changed
Input schema / properties / work_performed_on_date / descriptionPrevious value: -"Date work performed on"New value: +"JSON request body field — date work performed on"
- Changed
create_a_new_time_and_material_equipment_log6 fields changed- changed
Input schema / properties / description / descriptionPrevious value: -"Description of Time And Material Equipment Log"New value: +"JSON request body field — description of Time And Material Equipment Log" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity / descriptionPrevious value: -"Quantity of Time And Material Equipment Log"New value: +"JSON request body field — quantity of Time And Material Equipment Log" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / time_and_material_entry_id / descriptionPrevious value: -"Time & Material Entry Id of Time And Material Equipment Log"New value: +"JSON request body field — time & Material Entry Id of Time And Material Equipment Log" - changed
Input schema / properties / uom / descriptionPrevious value: -"Unit of measure for Time And Material Equipment Log"New value: +"JSON request body field — unit of measure for Time And Material Equipment Log"
- Changed
create_a_new_time_and_material_notification12 fields changed- changed
Input schema / properties / closed / descriptionPrevious value: -"closed"New value: +"JSON request body field — the closed for this Field Productivity operation" - changed
Input schema / properties / company_signed / descriptionPrevious value: -"company_signed"New value: +"JSON request body field — the company signed for this Field Productivity operation" - changed
Input schema / properties / creation / descriptionPrevious value: -"creation"New value: +"JSON request body field — the creation for this Field Productivity operation" - changed
Input schema / properties / customer_signed / descriptionPrevious value: -"customer_signed"New value: +"JSON request body field — the customer signed for this Field Productivity operation" - changed
Input schema / properties / group_equipment_totals_by / descriptionPrevious value: -"Grouping configurations for T&M Equipment push to Change Management"New value: +"JSON request body field — grouping configurations for T&M Equipment push to Change Management" - changed
Input schema / properties / group_labor_totals_by / descriptionPrevious value: -"Grouping configurations for T&M Labor push to Change Management"New value: +"JSON request body field — grouping configurations for T&M Labor push to Change Management" - changed
Input schema / properties / notify_dl_on_closed / descriptionPrevious value: -"notify_dl_on_closed"New value: +"JSON request body field — the notify dl on closed for this Field Productivity operation" - changed
Input schema / properties / notify_dl_on_company_signed / descriptionPrevious value: -"notify_dl_on_company_signed"New value: +"JSON request body field — notify_dl_on_company_signed" - changed
Input schema / properties / notify_dl_on_creation / descriptionPrevious value: -"notify_dl_on_creation"New value: +"JSON request body field — notify_dl_on_creation" - changed
Input schema / properties / notify_dl_on_customer_signed / descriptionPrevious value: -"notify_dl_on_customer_signed"New value: +"JSON request body field — notify_dl_on_customer_signed" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Added
create_a_note_in_the_project_company - Added
create_a_note_in_the_project_company_v2_0 - Removed
create_a_note_in_the_project_v2_0_company - Removed
create_a_note_in_the_project_v2_0_company_v2_0 - Changed
create_a_person31 fields changed- changed
Input schema / properties / address_1 / descriptionPrevious value: -"First part of the Person's address."New value: +"JSON request body field — first part of the Person's address." - changed
Input schema / properties / address_2 / descriptionPrevious value: -"Second part of the Person's address (e.g., Apartment, Suite, Unit)."New value: +"JSON request body field — second part of the Person's address (e.g., Apartment, Suite, Unit)." - changed
Input schema / properties / can_receive_email / descriptionPrevious value: -"Determines if the Person can receive email notifications."New value: +"JSON request body field — determines if the Person can receive email notifications." - changed
Input schema / properties / can_receive_mobile / descriptionPrevious value: -"Determines if the Person can receive mobile push notifications if they have the app installed."New value: +"JSON request body field — determines if the Person can receive mobile push notifications if they have the app installed." - changed
Input schema / properties / can_receive_sms / descriptionPrevious value: -"Determines if the Person can receive SMS notifications."New value: +"JSON request body field — determines if the Person can receive SMS notifications." - changed
Input schema / properties / city_town / descriptionPrevious value: -"The city or town where the Person is located."New value: +"JSON request body field — the city or town where the Person is located." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / country / descriptionPrevious value: -"The country where the Person is located."New value: +"JSON request body field — the country where the Person is located." - changed
Input schema / properties / dob / descriptionPrevious value: -"Date of birth of the Person. Accepts ISO Date String, UTC Date String, or MS Numeric Epoch Time."New value: +"JSON request body field — date of birth of the Person. Accepts ISO Date String, UTC Date String, or MS Numeric Epoch Time." - changed
Input schema / properties / email / descriptionPrevious value: -"The email that the Person will log in with. Required if `is_user` is true."New value: +"JSON request body field — the email that the Person will log in with. Required if `is_user` is true." - changed
Input schema / properties / emergency_contact_email / descriptionPrevious value: -"Email address of the emergency contact."New value: +"JSON request body field — email address of the emergency contact." - changed
Input schema / properties / emergency_contact_name / descriptionPrevious value: -"Name of the Person's emergency contact."New value: +"JSON request body field — name of the Person's emergency contact." - changed
Input schema / properties / emergency_contact_number / descriptionPrevious value: -"Phone number of the emergency contact."New value: +"JSON request body field — phone number of the emergency contact." - changed
Input schema / properties / emergency_contact_relation / descriptionPrevious value: -"The relationship between the Person and their emergency contact."New value: +"JSON request body field — the relationship between the Person and their emergency contact." - changed
Input schema / properties / employee_number / descriptionPrevious value: -"Internal employee identifier."New value: +"JSON request body field — internal employee identifier." - changed
Input schema / properties / first_name / descriptionPrevious value: -"First Name of the Person."New value: +"JSON request body field — first Name of the Person." - changed
Input schema / properties / group_ids / descriptionPrevious value: -"Array of UUIDs representing the Groups this Person belongs to. Can be empty if the Person is an Admin."New value: +"JSON request body field — array of UUIDs representing the Groups this Person belongs to. Can be empty if the Person is an Admin." - changed
Input schema / properties / hired_date / descriptionPrevious value: -"Date the Person was hired. Accepts ISO Date String, UTC Date String, or MS Numeric Epoch Time."New value: +"JSON request body field — date the Person was hired. Accepts ISO Date String, UTC Date String, or MS Numeric Epoch Time." - changed
Input schema / properties / hourly_wage / descriptionPrevious value: -"Hourly wage rate for the Person. Used for automatic spend tracking."New value: +"JSON request body field — hourly wage rate for the Person. Used for automatic spend tracking." - changed
Input schema / properties / is_assignable / descriptionPrevious value: -"Determines if the Person can be assigned to tasks."New value: +"JSON request body field — determines if the Person can be assigned to tasks." - changed
Input schema / properties / is_user / descriptionPrevious value: -"Determines if the Person can log into the app."New value: +"JSON request body field — determines if the Person can log into the app." - changed
Input schema / properties / job_title_id / descriptionPrevious value: -"UUID reference to a Job Title in the LaborChart System."New value: +"JSON request body field — uUID reference to a Job Title in the LaborChart System." - changed
Input schema / properties / last_name / descriptionPrevious value: -"Last Name of the Person."New value: +"JSON request body field — last Name of the Person." - changed
Input schema / properties / no_invite / descriptionPrevious value: -"If `true`, the Person will be created with all user properties but will not receive an invite until triggered manually by an Admin.\n"New value: +"JSON request body field — if `true`, the Person will be created with all user properties but will not receive an invite until triggered manually by an Admin.\n" - changed
Input schema / properties / notification_profile_id / descriptionPrevious value: -"UUID of the Notification Profile for the user."New value: +"JSON request body field — uUID of the Notification Profile for the user." - changed
Input schema / properties / password / descriptionPrevious value: -"Password for logging in. If not provided, an email will be sent to the user to set their password. Must be at least 8 characters with one uppercase, one lowercase, and one number.\n"New value: +"JSON request body field — password for logging in. If not provided, an email will be sent to the user to set their password. Must be at least 8 characters with one uppercase, one lowercase, and one number.\n" - changed
Input schema / properties / permission_level_id / descriptionPrevious value: -"UUID of the Permission Level assigned to the Person."New value: +"JSON request body field — uUID of the Permission Level assigned to the Person." - changed
Input schema / properties / phone / descriptionPrevious value: -"The Person's phone number, including country and area code. Must be unique among all registered People. **Note:** Pass `null` or exclude the field if the Person should not have a phone number.\n"New value: +"JSON request body field — the Person's phone number, including country and area code. Must be unique among all registered People. **Note:** Pass `null` or exclude the field if the Person should not have a phone number.\n" - changed
Input schema / properties / state_province / descriptionPrevious value: -"The state or province where the Person is located."New value: +"JSON request body field — the state or province where the Person is located." - changed
Input schema / properties / status / descriptionPrevious value: -"The status of the Person. `active` means the person is visible in all pages, while `inactive` hides the person unless filtered. Inactive People do not count against billing plans.\n"New value: +"JSON request body field — the status of the Person. `active` means the person is visible in all pages, while `inactive` hides the person unless filtered. Inactive People do not count against billing plans.\n" - changed
Input schema / properties / zipcode / descriptionPrevious value: -"The postal/zip code of the Person."New value: +"JSON request body field — the postal/zip code of the Person."
- Changed
create_a_piece_of_equipment2 fields changed- changed
Input schema / properties / equipment_name / descriptionPrevious value: -"Equipment Name"New value: +"JSON request body field — the equipment name for this Field Productivity operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_a_project26 fields changed- changed
Input schema / properties / address_1 / descriptionPrevious value: -"First part of the Project's address."New value: +"JSON request body field — first part of the Project's address." - changed
Input schema / properties / address_2 / descriptionPrevious value: -"Second part of the Project's address (e.g., Apartment, Suite, Unit)."New value: +"JSON request body field — second part of the Project's address (e.g., Apartment, Suite, Unit)." - changed
Input schema / properties / bid_rate / descriptionPrevious value: -"The bid rate for the Project."New value: +"JSON request body field — the bid rate for the Project." - changed
Input schema / properties / categories / descriptionPrevious value: -"Categories define buckets for resource assignments. Each Category can have nested Subcategories.\n"New value: +"JSON request body field — categories define buckets for resource assignments. Each Category can have nested Subcategories.\n" - changed
Input schema / properties / city_town / descriptionPrevious value: -"The City/Town for the Project."New value: +"JSON request body field — the City/Town for the Project." - changed
Input schema / properties / closed_date / descriptionPrevious value: -"If loading already closed jobs for historical tracking, this field can be populated."New value: +"JSON request body field — if loading already closed jobs for historical tracking, this field can be populated." - changed
Input schema / properties / color / descriptionPrevious value: -"Hexadecimal color code for the Project. Helps with categorization and visual distinction.\n"New value: +"JSON request body field — hexadecimal color code for the Project. Helps with categorization and visual distinction.\n" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / country / descriptionPrevious value: -"The Country for the Project."New value: +"JSON request body field — the Country for the Project." - changed
Input schema / properties / customer_name / descriptionPrevious value: -"Name of the customer associated with the Project."New value: +"JSON request body field — name of the customer associated with the Project." - changed
Input schema / properties / daily_end_time / descriptionPrevious value: -"Default time the Project's workday ends. Must follow `HH:MM am/pm` format. Allowed increments: 15 minutes.\n"New value: +"JSON request body field — default time the Project's workday ends. Must follow `HH:MM am/pm` format. Allowed increments: 15 minutes.\n" - changed
Input schema / properties / daily_start_time / descriptionPrevious value: -"Default time the Project's workday begins. Must follow `HH:MM am/pm` format. Allowed increments: 15 minutes.\n"New value: +"JSON request body field — default time the Project's workday begins. Must follow `HH:MM am/pm` format. Allowed increments: 15 minutes.\n" - changed
Input schema / properties / est_end_date / descriptionPrevious value: -"Estimated end date for the Project."New value: +"JSON request body field — estimated end date for the Project." - changed
Input schema / properties / group_ids / descriptionPrevious value: -"UUID references to the Groups this Project should be available to."New value: +"JSON request body field — uUID references to the Groups this Project should be available to." - changed
Input schema / properties / name / descriptionPrevious value: -"The name of the Project."New value: +"JSON request body field — the name of the Project." - changed
Input schema / properties / percent_complete / descriptionPrevious value: -"The percentage of the Project that is complete."New value: +"JSON request body field — the percentage of the Project that is complete." - changed
Input schema / properties / project_number / descriptionPrevious value: -"A unique identifier for the Project."New value: +"JSON request body field — a unique identifier for the Project." - changed
Input schema / properties / project_type / descriptionPrevious value: -"Any categorical classifier you use internally to label your Projects.\n"New value: +"JSON request body field — any categorical classifier you use internally to label your Projects.\n" - changed
Input schema / properties / roles / descriptionPrevious value: -"Assigns specific People to Roles on the Project. Useful for defining responsibilities and for notifications.\n"New value: +"JSON request body field — assigns specific People to Roles on the Project. Useful for defining responsibilities and for notifications.\n" - changed
Input schema / properties / start_date / descriptionPrevious value: -"Project's start date. Required if `status` is `active`."New value: +"JSON request body field — project's start date. Required if `status` is `active`." - changed
Input schema / properties / state_province / descriptionPrevious value: -"The State/Province for the Project."New value: +"JSON request body field — the State/Province for the Project." - changed
Input schema / properties / status / descriptionPrevious value: -"Controls Project visibility and filtering. `active` - Project is currently in progress. `pending` - Project is planned but not started. `inactive` - Project is no longer active.\n"New value: +"JSON request body field — controls Project visibility and filtering. `active` - Project is currently in progress. `pending` - Project is planned but not started. `inactive` - Project is no longer active.\n" - changed
Input schema / properties / tag_instances / descriptionPrevious value: -"Tags can be used as categorical labels or to define requirements for people assigned to the Project.\n"New value: +"JSON request body field — tags can be used as categorical labels or to define requirements for people assigned to the Project.\n" - changed
Input schema / properties / timezone / descriptionPrevious value: -"The timezone to use for scheduling outbound messages for the Project. If not provided, the Group timezone will be used.\n"New value: +"JSON request body field — the timezone to use for scheduling outbound messages for the Project. If not provided, the Group timezone will be used.\n" - changed
Input schema / properties / wage_overrides / descriptionPrevious value: -"Sets an hourly wage rate for specific Job Titles on this Project.\n"New value: +"JSON request body field — sets an hourly wage rate for specific Job Titles on this Project.\n" - changed
Input schema / properties / zipcode / descriptionPrevious value: -"The Zip/Postal Code for the Project."New value: +"JSON request body field — the Zip/Postal Code for the Project."
- Changed
create_a_project_checklist_template_from_a_company_checklist2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / source_template_id / descriptionPrevious value: -"The ID of the Checklist Template from the Company to add to the Project"New value: +"JSON request body field — the ID of the Checklist Template from the Company to add to the Project"
- Changed
create_a_project_logo3 fields changed- changed
Input schema / properties / file_name / descriptionPrevious value: -"The name of the logo file to be created."New value: +"JSON request body field — the name of the logo file to be created." - changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / upload_uuid / descriptionPrevious value: -"UUID referencing a previously completed Upload. See Company Uploads or Project Uploads for instructions on how use uploads."New value: +"JSON request body field — uUID referencing a previously completed Upload. See Company Uploads or Project Uploads for instructions on how use uploads."
- Added
create_a_proposal_in_the_project_company - Added
create_a_proposal_in_the_project_company_v2_0 - Removed
create_a_proposal_in_the_project_v2_0_company - Removed
create_a_proposal_in_the_project_v2_0_company_v2_0 - Changed
create_a_resource_request_on_a_project16 fields changed- changed
Input schema / properties / category_id / descriptionPrevious value: -"UUID of the Project Category."New value: +"JSON request body field — uUID of the Project Category." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / end_day / descriptionPrevious value: -"The last day the requested resource is needed (ISO 8601)."New value: +"JSON request body field — the last day the requested resource is needed (ISO 8601)." - changed
Input schema / properties / end_time / descriptionPrevious value: -"End time of the request (HH:MM am/pm format)."New value: +"JSON request body field — end time of the request (HH:MM am/pm format)." - changed
Input schema / properties / instruction_text / descriptionPrevious value: -"Instructions for the Resource Request."New value: +"JSON request body field — instructions for the Resource Request." - changed
Input schema / properties / job_title_id / descriptionPrevious value: -"Job Title UUID for this request."New value: +"JSON request body field — job Title UUID for this request." - changed
Input schema / properties / percent_allocated / descriptionPrevious value: -"Allocation percentage if the request is not hour-based."New value: +"JSON request body field — allocation percentage if the request is not hour-based." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project" - changed
Input schema / properties / quantity / descriptionPrevious value: -"Number of resource requests to create."New value: +"JSON request body field — number of resource requests to create." - changed
Input schema / properties / start_day / descriptionPrevious value: -"The first day the requested resource is needed (ISO 8601)."New value: +"JSON request body field — the first day the requested resource is needed (ISO 8601)." - changed
Input schema / properties / start_time / descriptionPrevious value: -"Start time of the request (HH:MM am/pm format)."New value: +"JSON request body field — start time of the request (HH:MM am/pm format)." - changed
Input schema / properties / state_id / descriptionPrevious value: -"UUID of the Assignment State."New value: +"JSON request body field — uUID of the Assignment State." - changed
Input schema / properties / subcategory_id / descriptionPrevious value: -"UUID of the Project Subcategory."New value: +"JSON request body field — uUID of the Project Subcategory." - changed
Input schema / properties / tag_ids / descriptionPrevious value: -"Array of UUIDs representing Tags."New value: +"JSON request body field — array of UUIDs representing Tags." - changed
Input schema / properties / work_days / descriptionPrevious value: -"Object to control working days (Sunday - Saturday as 0-6 index)."New value: +"JSON request body field — object to control working days (Sunday - Saturday as 0-6 index)." - changed
Input schema / properties / work_scope_text / descriptionPrevious value: -"Scope of Work for the Resource Request."New value: +"JSON request body field — scope of Work for the Resource Request."
- Changed
create_a_response3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / corresponding_status / descriptionPrevious value: -"Item Status that the Response corresponds to"New value: +"JSON request body field — item Status that the Response corresponds to" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the Response"New value: +"JSON request body field — name of the Response"
- Changed
create_a_response_in_the_specified_item_response_set4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / corresponding_status / descriptionPrevious value: -"Item Status that the Response corresponds to"New value: +"JSON request body field — item Status that the Response corresponds to" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the Response"New value: +"JSON request body field — name of the Response" - changed
Input schema / properties / response_set_id / descriptionPrevious value: -"The ID of the Response Set"New value: +"URL path parameter — the ID of the Response Set"
- Changed
create_a_single_group13 fields changed- changed
Input schema / properties / address_1 / descriptionPrevious value: -"The first part of the Group's address."New value: +"JSON request body field — the first part of the Group's address." - changed
Input schema / properties / address_2 / descriptionPrevious value: -"The second part of the Group's address (e.g., Apartment, Suite, Unit)."New value: +"JSON request body field — the second part of the Group's address (e.g., Apartment, Suite, Unit)." - changed
Input schema / properties / city_town / descriptionPrevious value: -"The City or Town for the Group."New value: +"JSON request body field — the City or Town for the Group." - changed
Input schema / properties / color / descriptionPrevious value: -"Hexadecimal color code for the Group. Can be helpful for categorization. Example: #53A9FF.\n"New value: +"JSON request body field — hexadecimal color code for the Group. Can be helpful for categorization. Example: #53A9FF.\n" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / contact_email / descriptionPrevious value: -"Email address for the Group's Point of Contact."New value: +"JSON request body field — email address for the Group's Point of Contact." - changed
Input schema / properties / contact_name / descriptionPrevious value: -"The Point of Contact (P.O.C.) name for the Group."New value: +"JSON request body field — the Point of Contact (P.O.C.) name for the Group." - changed
Input schema / properties / contact_phone / descriptionPrevious value: -"Phone number for the Group's Point of Contact. Must include country and area code.\n"New value: +"JSON request body field — phone number for the Group's Point of Contact. Must include country and area code.\n" - changed
Input schema / properties / country / descriptionPrevious value: -"The Country for the Group."New value: +"JSON request body field — the Country for the Group." - changed
Input schema / properties / name / descriptionPrevious value: -"Group Name."New value: +"JSON request body field — group Name." - changed
Input schema / properties / state_province / descriptionPrevious value: -"The State or Province for the Group."New value: +"JSON request body field — the State or Province for the Group." - changed
Input schema / properties / timezone / descriptionPrevious value: -"The default Timezone for scheduling outbound messages from projects in this group that don't specify their own Timezone. Example format: America/Chicago.\n"New value: +"JSON request body field — the default Timezone for scheduling outbound messages from projects in this group that don't specify their own Timezone. Example format: America/Chicago.\n" - changed
Input schema / properties / zipcode / descriptionPrevious value: -"Zip or Postal Code for the Group."New value: +"JSON request body field — zip or Postal Code for the Group."
- Changed
create_a_task_item_comment12 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / comment / descriptionPrevious value: -"The message of the comment"New value: +"JSON request body field — the message of the comment" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / document_management_document_revision_ids / descriptionPrevious value: -"PDM document to attach to the response"New value: +"JSON request body field — pDM document to attach to the response" - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / status / descriptionPrevious value: -"The status of the task item at the time the comment is created.\nStandard users who are assigned to the task item cannot change the status to closed or void."New value: +"JSON request body field — the status of the task item at the time the comment is created.\nStandard users who are assigned to the task item cannot change the status to closed or void." - changed
Input schema / properties / task_item_id / descriptionPrevious value: -"The task_item associated with the comment"New value: +"JSON request body field — the task_item associated with the comment" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
- Changed
create_a_wbs_code3 fields changed- changed
Input schema / properties / description / descriptionPrevious value: -"Description of the wbs code."New value: +"JSON request body field — description of the wbs code." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / segment_items / descriptionPrevious value: -"segment_items"New value: +"JSON request body field — the segment items for this Work Breakdown Structure operation"
- Added
create_a_workflow_instance_company - Removed
create_a_workflow_instance_company_v2_0 - Added
create_a_workflow_instance_project - Removed
create_a_workflow_instance_project_v2_0 - Changed
create_accident_log3 fields changed- changed
Input schema / properties / accident_log / descriptionPrevious value: -"accident_log"New value: +"JSON request body field — the accident log for this Daily Log operation" - changed
Input schema / properties / attachments / descriptionPrevious value: -"Accident Log Attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — accident Log Attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_action11 fields changed- changed
Input schema / properties / action_type_id / descriptionPrevious value: -"The ID of the Action Type"New value: +"JSON request body field — the ID of the Action Type" - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"Description of action taken in rich text form."New value: +"JSON request body field — description of action taken in rich text form." - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"The ID of the Incident"New value: +"JSON request body field — the ID of the Incident" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"Whether or not Configurable validations from the Incident/Injury Configurable Field Set should be run (default: false).\nSee (https://developers.procore.com/reference/configurable-field-sets#list-pr..."New value: +"Query string parameter — whether or not Configurable validations from the Incident/Injury Configurable Field Set should be run (default: false).\nSee (https://developers.procore.com/reference/configurable-field-sets#list-pr..." - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
- Changed
create_action_plan10 fields changed- changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"Description of the Action Plan"New value: +"JSON request body field — description of the Action Plan" - changed
Input schema / properties / location_id / descriptionPrevious value: -"Location ID to be set on the Action Plan"New value: +"JSON request body field — location ID to be set on the Action Plan" - changed
Input schema / properties / manager_id / descriptionPrevious value: -"Party Person ID of the Action Plan Manager"New value: +"JSON request body field — party Person ID of the Action Plan Manager" - changed
Input schema / properties / plan_approvers_attributes / descriptionPrevious value: -"plan_approvers_attributes"New value: +"JSON request body field — plan_approvers_attributes" - changed
Input schema / properties / plan_receivers_attributes / descriptionPrevious value: -"plan_receivers_attributes"New value: +"JSON request body field — plan_receivers_attributes" - changed
Input schema / properties / plan_type_id / descriptionPrevious value: -"Plan Type ID to be set on the Action Plan"New value: +"JSON request body field — plan Type ID to be set on the Action Plan" - changed
Input schema / properties / private / descriptionPrevious value: -"Privacy flag of the Action Plan"New value: +"JSON request body field — privacy flag of the Action Plan" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / title / descriptionPrevious value: -"Title of the Action Plan"New value: +"JSON request body field — title of the Action Plan"
- Changed
create_action_plan_approver_signature4 fields changed- changed
Input schema / properties / attachment / descriptionPrevious value: -"Attachment representing the Signature.\nTo upload an attachment you must upload the entire payload as `multipart/form-data` content-type\nwith the `attachment` file."New value: +"JSON request body field — attachment representing the Signature.\nTo upload an attachment you must upload the entire payload as `multipart/form-data` content-type\nwith the `attachment` file." - changed
Input schema / properties / attachment_string / descriptionPrevious value: -"Base64 encoded string representing PNG image of signature"New value: +"JSON request body field — base64 encoded string representing PNG image of signature" - changed
Input schema / properties / plan_approver_id / descriptionPrevious value: -"Action Plan Approver ID"New value: +"URL path parameter — action Plan Approver ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_action_plan_item7 fields changed- changed
Input schema / properties / description / descriptionPrevious value: -"Description of the Action Plan Item"New value: +"JSON request body field — description of the Action Plan Item" - changed
Input schema / properties / due_at / descriptionPrevious value: -"Due Date of the Action Plan Item"New value: +"JSON request body field — due Date of the Action Plan Item" - changed
Input schema / properties / holding_type / descriptionPrevious value: -"Action Plan Item holding type specifies whether the current item holds all the succeeding items in the section or the plan"New value: +"JSON request body field — action Plan Item holding type specifies whether the current item holds all the succeeding items in the section or the plan" - changed
Input schema / properties / notes / descriptionPrevious value: -"Notes for the Action Plan Item"New value: +"JSON request body field — notes for the Action Plan Item" - changed
Input schema / properties / plan_section_id / descriptionPrevious value: -"Section ID of the Action Plan Item"New value: +"JSON request body field — section ID of the Action Plan Item" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / title / descriptionPrevious value: -"Title of the Action Plan Item"New value: +"JSON request body field — title of the Action Plan Item"
- Changed
create_action_plan_item_assignee6 fields changed- changed
Input schema / properties / is_holding / descriptionPrevious value: -"Indicates whether or not the Action Item Assignee's signature is holding"New value: +"JSON request body field — indicates whether or not the Action Item Assignee's signature is holding" - changed
Input schema / properties / party_id / descriptionPrevious value: -"Party Person ID of the Action Plan Item Assignee to be set"New value: +"JSON request body field — party Person ID of the Action Plan Item Assignee to be set" - changed
Input schema / properties / plan_item_id / descriptionPrevious value: -"Action Plan Item ID of the Action Plan Item Assignee to be set"New value: +"JSON request body field — action Plan Item ID of the Action Plan Item Assignee to be set" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / role / descriptionPrevious value: -"Role of the Action Plan Item Assignee to be set"New value: +"JSON request body field — role of the Action Plan Item Assignee to be set" - changed
Input schema / properties / verification_method_id / descriptionPrevious value: -"Verification Method ID of the Action Plan Item Assignee to be set"New value: +"JSON request body field — verification Method ID of the Action Plan Item Assignee to be set"
- Changed
create_action_plan_item_assignee_signature4 fields changed- changed
Input schema / properties / attachment / descriptionPrevious value: -"Attachment representing the Signature.\nTo upload an attachment you must upload the entire payload as `multipart/form-data` content-type\nwith the `attachment` file."New value: +"JSON request body field — attachment representing the Signature.\nTo upload an attachment you must upload the entire payload as `multipart/form-data` content-type\nwith the `attachment` file." - changed
Input schema / properties / attachment_string / descriptionPrevious value: -"Base64 encoded string representing PNG image of signature"New value: +"JSON request body field — base64 encoded string representing PNG image of signature" - changed
Input schema / properties / plan_item_assignee_id / descriptionPrevious value: -"Action Plan Item Assignee ID"New value: +"URL path parameter — action Plan Item Assignee ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_action_plan_receiver_signature4 fields changed- changed
Input schema / properties / attachment / descriptionPrevious value: -"Attachment representing the Signature.\nTo upload an attachment you must upload the entire payload as `multipart/form-data` content-type\nwith the `attachment` file."New value: +"JSON request body field — attachment representing the Signature.\nTo upload an attachment you must upload the entire payload as `multipart/form-data` content-type\nwith the `attachment` file." - changed
Input schema / properties / attachment_string / descriptionPrevious value: -"Base64 encoded string representing PNG image of signature"New value: +"JSON request body field — base64 encoded string representing PNG image of signature" - changed
Input schema / properties / plan_receiver_id / descriptionPrevious value: -"Action Plan Receiver ID"New value: +"URL path parameter — action Plan Receiver ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_action_plan_reference4 fields changed- changed
Input schema / properties / payload / descriptionPrevious value: -"One of attachment, drawing_revision_id, file_version_id, document_management_document_reference, specification_section_id, submittal_log_id, generic_tool_item_id, form_id, meeting_id, or observatio..."New value: +"JSON request body field — one of attachment, drawing_revision_id, file_version_id, document_management_document_reference, specification_section_id, submittal_log_id, generic_tool_item_id, form_id, meeting_id, or observatio..." - changed
Input schema / properties / plan_item_id / descriptionPrevious value: -"Action Plan Item ID"New value: +"JSON request body field — unique identifier of the plan item" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / type / descriptionPrevious value: -"Action Plan Reference Type"New value: +"JSON request body field — action Plan Reference Type"
- Changed
create_action_plan_section4 fields changed- changed
Input schema / properties / plan_id / descriptionPrevious value: -"Action Plan ID"New value: +"JSON request body field — unique identifier of the plan" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / title / descriptionPrevious value: -"Title"New value: +"JSON request body field — the title for this Action Plans operation" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view (which attributes) of the Action Plan Section is going to be present in the response.\n- `normal` (default): Returns standard Action Plan Section attributes\n- `extended`: Return..."New value: +"Query string parameter — specifies which view (which attributes) of the Action Plan Section is going to be present in the response.\n- `normal` (default): Returns standard Action Plan Section attributes\n- `extended`: Return..."
- Changed
create_action_plan_template_approver3 fields changed- changed
Input schema / properties / party_id / descriptionPrevious value: -"ID of the Party to be designated as the Plan Approver"New value: +"JSON request body field — iD of the Party to be designated as the Plan Approver" - changed
Input schema / properties / plan_template_id / descriptionPrevious value: -"ID of the Project Action Plan Template"New value: +"JSON request body field — iD of the Project Action Plan Template" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_action_plan_template_receiver3 fields changed- changed
Input schema / properties / party_id / descriptionPrevious value: -"ID of the Party to be designated as the Plan Receiver"New value: +"JSON request body field — iD of the Party to be designated as the Plan Receiver" - changed
Input schema / properties / plan_template_id / descriptionPrevious value: -"ID of the Project Action Plan Template"New value: +"JSON request body field — iD of the Project Action Plan Template" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_action_plan_test_record5 fields changed- changed
Input schema / properties / payload / descriptionPrevious value: -"payload"New value: +"JSON request body field — the payload for this Action Plans operation" - changed
Input schema / properties / plan_item_id / descriptionPrevious value: -"ID of the associated Action Plan Control Activity"New value: +"JSON request body field — iD of the associated Action Plan Control Activity" - changed
Input schema / properties / plan_test_record_request_id / descriptionPrevious value: -"ID of the associated Action Plan Test Record Request"New value: +"JSON request body field — iD of the associated Action Plan Test Record Request" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / type / descriptionPrevious value: -"Action Plan Test Record Type"New value: +"JSON request body field — action Plan Test Record Type"
- Changed
create_action_plan_test_record_request4 fields changed- changed
Input schema / properties / payload / descriptionPrevious value: -"Used to specify extra required details for some types."New value: +"JSON request body field — used to specify extra required details for some types." - changed
Input schema / properties / plan_item_id / descriptionPrevious value: -"Action Plan Item ID"New value: +"JSON request body field — unique identifier of the plan item" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / type / descriptionPrevious value: -"Action Plan Test Record Type"New value: +"JSON request body field — action Plan Test Record Type"
- Changed
create_action_plan_verification_methods3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Specifies if the Action Plan Verification Method is intended for use"New value: +"JSON request body field — specifies if the Action Plan Verification Method is intended for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"Name"New value: +"JSON request body field — the name for this Action Plans operation"
- Changed
create_actual_production_quantity10 fields changed- changed
Input schema / properties / cost_code_id / descriptionPrevious value: -"The Cost Code ID for the Actual Production Quantity. DO NOT provide if your project is configured for Task Codes."New value: +"JSON request body field — the Cost Code ID for the Actual Production Quantity. DO NOT provide if your project is configured for Task Codes." - changed
Input schema / properties / crew_id / descriptionPrevious value: -"The Crew ID for the Actual Production Quantity"New value: +"JSON request body field — the Crew ID for the Actual Production Quantity" - changed
Input schema / properties / date / descriptionPrevious value: -"Date the Actual Production Quantity was installed. The date will be associated with the production quantity only when 'timesheet_id' is not included in the request."New value: +"JSON request body field — date the Actual Production Quantity was installed. The date will be associated with the production quantity only when 'timesheet_id' is not included in the request." - changed
Input schema / properties / description / descriptionPrevious value: -"The description of the Actual Production Quantity"New value: +"JSON request body field — the description of the Actual Production Quantity" - changed
Input schema / properties / location_id / descriptionPrevious value: -"The Location ID for the Actual Production Quantity"New value: +"JSON request body field — the Location ID for the Actual Production Quantity" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity / descriptionPrevious value: -"Amount installed"New value: +"JSON request body field — amount installed" - changed
Input schema / properties / sub_job_id / descriptionPrevious value: -"The Sub Job ID for the Actual Production Quantity. DO NOT provide if your project is configured for Task Codes."New value: +"JSON request body field — the Sub Job ID for the Actual Production Quantity. DO NOT provide if your project is configured for Task Codes." - changed
Input schema / properties / timesheet_id / descriptionPrevious value: -"The Timesheet ID for the Actual Production Quantity. If the 'timesheet_id' is provided in the request, then the date for the timesheet will be associated with the production quantity, regardless of..."New value: +"JSON request body field — the Timesheet ID for the Actual Production Quantity. If the 'timesheet_id' is provided in the request, then the date for the timesheet will be associated with the production quantity, regardless of..." - changed
Input schema / properties / wbs_code_id / descriptionPrevious value: -"The Production Quantity Code for the Actual Production Quantity. This is necessary if your project is configured for Task Codes. DO NOT provide if your project is not configured for Task Codes."New value: +"JSON request body field — the Production Quantity Code for the Actual Production Quantity. This is necessary if your project is configured for Task Codes. DO NOT provide if your project is not configured for Task Codes."
- Changed
create_advanced_export_for_existing_rfi5 fields changed- changed
Input schema / properties / cover_sheet / descriptionPrevious value: -"cover_sheet"New value: +"JSON request body field — the cover sheet for this RFI operation" - changed
Input schema / properties / files / descriptionPrevious value: -"files"New value: +"JSON request body field — the files for this RFI operation" - changed
Input schema / properties / format / descriptionPrevious value: -"Export Format"New value: +"Query string parameter — export Format" - changed
Input schema / properties / id / descriptionPrevious value: -"RFI ID"New value: +"URL path parameter — unique identifier of the RFI resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_affliction_type3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Affliction Type is available for use"New value: +"JSON request body field — flag that denotes if the Affliction Type is available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Affliction Type"New value: +"JSON request body field — the Name of the Affliction Type"
- Changed
create_an_action_plan_from_a_plan_template2 fields changed- changed
Input schema / properties / plan_template_id / descriptionPrevious value: -"Action Plan Template ID"New value: +"Query string parameter — action Plan Template ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_an_equipment_make3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / is_active / descriptionPrevious value: -"Equipment make is active if true"New value: +"JSON request body field — equipment make is active if true" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the equipment make"New value: +"JSON request body field — name of the equipment make"
- Changed
create_an_equipment_model5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / is_active / descriptionPrevious value: -"If the equipment model is active"New value: +"JSON request body field — if the equipment model is active" - changed
Input schema / properties / managed_equipment_make_id / descriptionPrevious value: -"Equipment make ID the model is associated to"New value: +"JSON request body field — equipment make ID the model is associated to" - changed
Input schema / properties / managed_equipment_type_id / descriptionPrevious value: -"Equipment type ID the model is associated to"New value: +"JSON request body field — equipment type ID the model is associated to" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the equipment model"New value: +"JSON request body field — name of the equipment model"
- Changed
create_an_equipment_type4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / is_active / descriptionPrevious value: -"If the equipment model is active"New value: +"JSON request body field — if the equipment model is active" - changed
Input schema / properties / managed_equipment_category_id / descriptionPrevious value: -"Equipment category ID the type is associated to"New value: +"JSON request body field — equipment category ID the type is associated to" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the equipment Type"New value: +"JSON request body field — name of the equipment Type"
- Added
create_an_estimate_line_item_in_the_proposal_company - Added
create_an_estimate_line_item_in_the_proposal_project - Removed
create_an_estimate_line_item_in_the_proposal_v2_0_company - Removed
create_an_estimate_line_item_in_the_proposal_v2_0_project - Changed
create_an_project_equipment_log8 fields changed- changed
Input schema / properties / induction_checklist_list_id / descriptionPrevious value: -"Id of the inspection list the equipment uses"New value: +"JSON request body field — id of the inspection list the equipment uses" - changed
Input schema / properties / induction_number / descriptionPrevious value: -"The number used for equipment induction"New value: +"JSON request body field — the number used for equipment induction" - changed
Input schema / properties / induction_status / descriptionPrevious value: -"Indicates if the equipemnt has been successfully inspected and allowed to perform work"New value: +"JSON request body field — indicates if the equipemnt has been successfully inspected and allowed to perform work" - changed
Input schema / properties / inspection_date / descriptionPrevious value: -"The date the equipment was inspected"New value: +"JSON request body field — the date the equipment was inspected" - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"Equipment Id the log is associated with"New value: +"JSON request body field — equipment Id the log is associated with" - changed
Input schema / properties / offsite / descriptionPrevious value: -"The Date equipment left the site"New value: +"JSON request body field — the Date equipment left the site" - changed
Input schema / properties / onsite / descriptionPrevious value: -"The Date equipment arrived on site"New value: +"JSON request body field — the Date equipment arrived on site" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project the equipment was logged for"New value: +"JSON request body field — iD of the project the equipment was logged for"
- Changed
create_and_update_bulk_coordination_issues2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / updates / descriptionPrevious value: -"An array of coordination issue payloads"New value: +"JSON request body field — an array of coordination issue payloads"
- Changed
create_app_configuration8 fields changed- changed
Input schema / properties / app_installation_id / descriptionPrevious value: -"App Installation ID"New value: +"JSON request body field — unique identifier of the app installation" - changed
Input schema / properties / applies_to_all_projects / descriptionPrevious value: -"Apply the app configuration to all projects under a company ( if set to true, project_ids field must be blank )"New value: +"JSON request body field — apply the app configuration to all projects under a company ( if set to true, project_ids field must be blank )" - changed
Input schema / properties / applies_to_company / descriptionPrevious value: -"Apply the app configuration to be available from company routes"New value: +"JSON request body field — apply the app configuration to be available from company routes" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company" - changed
Input schema / properties / instance_configuration / descriptionPrevious value: -"App configuration values for a set of projects."New value: +"JSON request body field — app configuration values for a set of projects." - changed
Input schema / properties / project_ids / descriptionPrevious value: -"A list of projects which will have the app configuration"New value: +"JSON request body field — a list of projects which will have the app configuration" - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter." - changed
Input schema / properties / title / descriptionPrevious value: -"Single title for app configurations"New value: +"JSON request body field — single title for app configurations"
- Changed
create_app_installation4 fields changed- changed
Input schema / properties / app_installation / descriptionPrevious value: -"app_installation"New value: +"JSON request body field — the app installation for this App Marketplace operation" - changed
Input schema / properties / app_uid / descriptionPrevious value: -"Third party application UID"New value: +"JSON request body field — third party application UID" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Company ID. Note: Only one of project_id or company_id is required."New value: +"JSON request body field — company ID. Note: Only one of project_id or company_id is required." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Project ID. Note: Only one of project_id or company_id is required."New value: +"JSON request body field — project ID. Note: Only one of project_id or company_id is required."
- Changed
create_attachment_project3 fields changed- changed
Input schema / properties / attachment / descriptionPrevious value: -"Witness Statement Attachment.\nTo upload an attachment you must upload the entire payload as `multipart/form-data` content-type\nwith the `attachment` file."New value: +"JSON request body field — witness Statement Attachment.\nTo upload an attachment you must upload the entire payload as `multipart/form-data` content-type\nwith the `attachment` file." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / witness_statement_id / descriptionPrevious value: -"Witness Statement ID"New value: +"URL path parameter — witness Statement ID"
- Changed
create_attachment_project_v1_03 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / time_and_material_entry_attachment / descriptionPrevious value: -"time_and_material_entry_attachment"New value: +"JSON request body field — time_and_material_entry_attachment" - changed
Input schema / properties / time_and_material_entry_id / descriptionPrevious value: -"Time & Material Id the attachment is associated with"New value: +"JSON request body field — time & Material Id the attachment is associated with"
- Changed
create_attachment_project_v1_0_24 fields changed- changed
Input schema / properties / attachment / descriptionPrevious value: -"Incident Attachment.\nTo upload an attachment you must upload the entire payload as `multipart/form-data` content-type \nwith the `attachment` file.\n"New value: +"JSON request body field — incident Attachment.\nTo upload an attachment you must upload the entire payload as `multipart/form-data` content-type \nwith the `attachment` file.\n" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"URL path parameter — unique identifier of the incident" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"Whether or not Configurable validations from the Incident/Injury Configurable Field Set should be run (default: false).\nSee (https://developers.procore.com/reference/configurable-field-sets#list-pr..."New value: +"Query string parameter — whether or not Configurable validations from the Incident/Injury Configurable Field Set should be run (default: false).\nSee (https://developers.procore.com/reference/configurable-field-sets#list-pr..."
- Changed
create_attachment_project_v1_0_43 fields changed- changed
Input schema / properties / attachment / descriptionPrevious value: -"[DEPRECATED] Checklist (Inspection) Attachment. The 'attachment' field using multipart/form-data content-type for file uploads is deprecated. Please use application/json content-type with the 'at..."New value: +"JSON request body field — [DEPRECATED] Checklist (Inspection) Attachment. The 'attachment' field using multipart/form-data content-type for file uploads is deprecated. Please use application/json content-type with the 'at..." - changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist (Inspection) ID"New value: +"URL path parameter — checklist (Inspection) ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_attachment_project_v1_0_53 fields changed- changed
Input schema / properties / action_id / descriptionPrevious value: -"Action ID"New value: +"URL path parameter — unique identifier of the action" - changed
Input schema / properties / attachment / descriptionPrevious value: -"Action Attachment.\nTo upload an attachment you must upload the entire payload as `multipart/form-data` content-type\nwith the `attachment` file."New value: +"JSON request body field — action Attachment.\nTo upload an attachment you must upload the entire payload as `multipart/form-data` content-type\nwith the `attachment` file." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_bid8 fields changed- changed
Input schema / properties / bid_package_id / descriptionPrevious value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package" - changed
Input schema / properties / bidder_comments / descriptionPrevious value: -"Comments"New value: +"JSON request body field — comments" - changed
Input schema / properties / is_bidder_committed / descriptionPrevious value: -"Bidder committed"New value: +"JSON request body field — bidder committed" - changed
Input schema / properties / lump_sum_amount / descriptionPrevious value: -"Lump sum (overall) amount"New value: +"JSON request body field — lump sum (overall) amount" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / recipient_ids / descriptionPrevious value: -"Array of Login IDs to add as recipients"New value: +"JSON request body field — array of Login IDs to add as recipients" - changed
Input schema / properties / submitted / descriptionPrevious value: -"Vendor submitted Bid"New value: +"JSON request body field — vendor submitted Bid" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor responsible for bid"New value: +"JSON request body field — vendor responsible for bid"
- Added
create_bid_board_project - Removed
create_bid_board_project_v2_0 - Changed
create_bid_package31 fields changed- changed
Input schema / properties / accept_post_due_submissions / descriptionPrevious value: -"Accepts bid post due submissions"New value: +"JSON request body field — accepts bid post due submissions" - changed
Input schema / properties / accounting_method / descriptionPrevious value: -"Bid package accounting method, either 'amount' or 'unit'"New value: +"JSON request body field — bid package accounting method, either 'amount' or 'unit'" - changed
Input schema / properties / anticipated_award_date / descriptionPrevious value: -"Anticipated award date"New value: +"JSON request body field — anticipated award date" - changed
Input schema / properties / bid_due_date / descriptionPrevious value: -"Due date"New value: +"JSON request body field — bid due date in YYYY-MM-DD format" - changed
Input schema / properties / bid_email_message / descriptionPrevious value: -"Bid package email information details"New value: +"JSON request body field — bid package email information details" - changed
Input schema / properties / bid_submission_confirmation / descriptionPrevious value: -"Bid Package submission confirmation text"New value: +"JSON request body field — bid Package submission confirmation text" - changed
Input schema / properties / bid_web_message / descriptionPrevious value: -"Bid package bidding instructions"New value: +"JSON request body field — bid package bidding instructions" - changed
Input schema / properties / blind_bidding / descriptionPrevious value: -"Blind bidding enabled"New value: +"JSON request body field — blind bidding enabled" - changed
Input schema / properties / business_classifications / descriptionPrevious value: -"Array of business classifications"New value: +"JSON request body field — array of business classifications" - changed
Input schema / properties / display_project_name / descriptionPrevious value: -"Display project name"New value: +"JSON request body field — display project name" - changed
Input schema / properties / distribution_ids / descriptionPrevious value: -"Array of User IDs who will be on the bid package's distribution list"New value: +"JSON request body field — array of User IDs who will be on the bid package's distribution list" - changed
Input schema / properties / enable_prebid_walkthrough / descriptionPrevious value: -"Pre-bid walkthrough enabled"New value: +"JSON request body field — pre-bid walkthrough enabled" - changed
Input schema / properties / enable_public_discovery / descriptionPrevious value: -"Whether the bid package is discoverable by the public"New value: +"JSON request body field — whether the bid package is discoverable by the public" - changed
Input schema / properties / manager_id / descriptionPrevious value: -"Login Information ID for Manager"New value: +"JSON request body field — login Information ID for Manager" - changed
Input schema / properties / number / descriptionPrevious value: -"Bid package number"New value: +"JSON request body field — bid package number" - changed
Input schema / properties / pre_bid_meeting_date / descriptionPrevious value: -"Date and time for the pre-bid meeting in UTC (ISO 8601 format)"New value: +"JSON request body field — date and time for the pre-bid meeting in UTC (ISO 8601 format)" - changed
Input schema / properties / pre_bid_meeting_location / descriptionPrevious value: -"Location for the pre-bid meeting"New value: +"JSON request body field — location for the pre-bid meeting" - changed
Input schema / properties / pre_bid_meeting_notes / descriptionPrevious value: -"Notes for the pre-bid meeting"New value: +"JSON request body field — notes for the pre-bid meeting" - changed
Input schema / properties / pre_bid_meeting_online_link / descriptionPrevious value: -"Online meeting link for the pre-bid meeting"New value: +"JSON request body field — online meeting link for the pre-bid meeting" - changed
Input schema / properties / pre_bid_walk_through_date / descriptionPrevious value: -"Scheduled pre-bid walkthrough date"New value: +"JSON request body field — scheduled pre-bid walkthrough date" - changed
Input schema / properties / pre_bid_walk_through_notes / descriptionPrevious value: -"Pre-bid walkthrough notes"New value: +"JSON request body field — pre-bid walkthrough notes" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / prostore_file_ids / descriptionPrevious value: -"Array of Procore File IDs for Non-Disclosure Agreement"New value: +"JSON request body field — array of Procore File IDs for Non-Disclosure Agreement" - changed
Input schema / properties / public_bid_opening_details_date / descriptionPrevious value: -"Date and time for the public bid opening in UTC (ISO 8601 format)"New value: +"JSON request body field — date and time for the public bid opening in UTC (ISO 8601 format)" - changed
Input schema / properties / public_bid_opening_details_location / descriptionPrevious value: -"Location for the public bid opening"New value: +"JSON request body field — location for the public bid opening" - changed
Input schema / properties / public_bid_opening_details_online_link / descriptionPrevious value: -"Online link for the public bid opening"New value: +"JSON request body field — online link for the public bid opening" - changed
Input schema / properties / public_project_funding_source / descriptionPrevious value: -"Source of funding for the public project, either 'private' or 'public'"New value: +"JSON request body field — source of funding for the public project, either 'private' or 'public'" - changed
Input schema / properties / require_nda / descriptionPrevious value: -"Require Non-Disclosure Agreement"New value: +"JSON request body field — require Non-Disclosure Agreement" - changed
Input schema / properties / show_location_for_nda_projects / descriptionPrevious value: -"Whether the location for the NDA project is shown"New value: +"JSON request body field — whether the location for the NDA project is shown" - changed
Input schema / properties / title / descriptionPrevious value: -"Bid package title"New value: +"JSON request body field — bid package title" - changed
Input schema / properties / trades_and_services / descriptionPrevious value: -"Array of trades and services"New value: +"JSON request body field — array of trades and services"
- Changed
create_billing_period5 fields changed- changed
Input schema / properties / due_date / descriptionPrevious value: -"Due date"New value: +"JSON request body field — due date in YYYY-MM-DD format" - changed
Input schema / properties / end_date / descriptionPrevious value: -"End date"New value: +"JSON request body field — the end date in YYYY-MM-DD format" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date"New value: +"JSON request body field — the start date in YYYY-MM-DD format" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Commitments operation"
- Changed
create_bim_file2 fields changed- changed
Input schema / properties / bim_file / descriptionPrevious value: -"BIM File Item object. Each BIM File can be uniquely identified by name and UUID."New value: +"JSON request body field — bIM File Item object. Each BIM File can be uniquely identified by name and UUID." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_bim_geometry_file_bundle3 fields changed- changed
Input schema / properties / bim_geometry_file_bundle / descriptionPrevious value: -"BIM Geometry File"New value: +"JSON request body field — bIM Geometry File" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Specify response schema view"New value: +"JSON request body field — specify response schema view"
- Changed
create_bim_level3 fields changed- changed
Input schema / properties / bim_level / descriptionPrevious value: -"BIM Level"New value: +"JSON request body field — the bim level for this BIM operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Specify response schema view"New value: +"JSON request body field — specify response schema view"
- Changed
create_bim_mint_tokens1 field changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_bim_model3 fields changed- changed
Input schema / properties / bim_model / descriptionPrevious value: -"BIM Model"New value: +"JSON request body field — the bim model for this BIM operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Specify response schema view"New value: +"JSON request body field — specify response schema view"
- Changed
create_bim_model_revision2 fields changed- changed
Input schema / properties / bim_model_revision / descriptionPrevious value: -"bim_model_revision"New value: +"JSON request body field — the bim model revision for this BIM operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_bim_model_revision_plan2 fields changed- changed
Input schema / properties / bim_model_revision_plan / descriptionPrevious value: -"BIM Model Revision Plan"New value: +"JSON request body field — bIM Model Revision Plan" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_bim_plan3 fields changed- changed
Input schema / properties / bim_plan / descriptionPrevious value: -"bim_plan"New value: +"JSON request body field — the bim plan for this BIM operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Specify response schema view"New value: +"JSON request body field — specify response schema view"
- Changed
create_bim_view_folder2 fields changed- changed
Input schema / properties / bim_view_folder / descriptionPrevious value: -"bim_view_folder"New value: +"JSON request body field — the bim view folder for this BIM operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_budget_line_item2 fields changed- changed
Input schema / properties / budget_line_item / descriptionPrevious value: -"Budget Line Item object"New value: +"JSON request body field — budget Line Item object" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Removed
create_budget_line_item_v1_1 - Changed
create_budget_modification7 fields changed- changed
Input schema / properties / from_budget_line_item_id / descriptionPrevious value: -"ID of the Budget Line Item to transfer from. NOTE 1: required if 'Allow Budget Modifications Which Modify Grand Total' is not checked. NOTE 2: When updating if you want to remove the from_budget_li..."New value: +"JSON request body field — iD of the Budget Line Item to transfer from. NOTE 1: required if 'Allow Budget Modifications Which Modify Grand Total' is not checked. NOTE 2: When updating if you want to remove the from_budget_li..." - changed
Input schema / properties / notes / descriptionPrevious value: -"Notes on the purpose of the transfer"New value: +"JSON request body field — notes on the purpose of the transfer" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"The Origin Data to associate with this Budget Modification"New value: +"JSON request body field — the Origin Data to associate with this Budget Modification" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"The Origin ID to associate with this Budget Modification (must be unique within a company)"New value: +"JSON request body field — the Origin ID to associate with this Budget Modification (must be unique within a company)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / to_budget_line_item_id / descriptionPrevious value: -"ID of the Budget Line Item to transfer to. NOTE: You may not pass the same to_budget_line_item_id as from_budget_line_item_id."New value: +"JSON request body field — iD of the Budget Line Item to transfer to. NOTE: You may not pass the same to_budget_line_item_id as from_budget_line_item_id." - changed
Input schema / properties / transfer_amount / descriptionPrevious value: -"Transfer amount"New value: +"JSON request body field — the transfer amount for this Budget operation"
- Changed
create_calendar_item9 fields changed- changed
Input schema / properties / assigned_id / descriptionPrevious value: -"ID of the assigned user for the Calendar Item"New value: +"JSON request body field — iD of the assigned user for the Calendar Item" - changed
Input schema / properties / color / descriptionPrevious value: -"Calendar Item color (as a hex triplet)"New value: +"JSON request body field — calendar Item color (as a hex triplet)" - changed
Input schema / properties / description / descriptionPrevious value: -"Calendar Item description"New value: +"JSON request body field — calendar Item description" - changed
Input schema / properties / finish / descriptionPrevious value: -"The finish date of the Calendar Item"New value: +"JSON request body field — the finish date of the Calendar Item" - changed
Input schema / properties / name / descriptionPrevious value: -"Calendar Item name"New value: +"JSON request body field — calendar Item name" - changed
Input schema / properties / percentage / descriptionPrevious value: -"Calendar Item completion percentage"New value: +"JSON request body field — calendar Item completion percentage" - changed
Input schema / properties / private / descriptionPrevious value: -"Calendar Item private status"New value: +"JSON request body field — calendar Item private status" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start / descriptionPrevious value: -"The start date of the Calendar Item"New value: +"JSON request body field — the start date of the Calendar Item"
- Changed
create_call_log3 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Call Log Attachments are not viewable or used on web. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together..."New value: +"JSON request body field — call Log Attachments are not viewable or used on web. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together..." - changed
Input schema / properties / call_log / descriptionPrevious value: -"call_log"New value: +"JSON request body field — the call log for this Daily Log operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
create_catalog - Removed
create_catalog_v2_0 - Changed
create_change_event21 fields changed- removed
Input schema / properties / attachmentsRemoved value: -{ - "description": "Change Event Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files.", - "items": {}, - "type": "array" -} - removed
Input schema / properties / change_eventRemoved value: -{ - "additionalProperties": {}, - "description": "change_event", - "type": "object" -} - removed
Input schema / properties / change_event_origin_idRemoved value: -{ - "description": "ID of the record to associate as the Change Event origin.\nProvide alongside `change_event_origin_type`. Send both values as `null` to remove an existing origin.", - "type": "number" -} - removed
Input schema / properties / change_event_origin_typeRemoved value: -{ - "description": "Change Event origin type. Supported values: `GenericToolItem`, `CommunicationThread`, `Meeting`, `Observations::Item`, `Rfi::Header`, `SiteInstruction`.", - "type": "string" -} - added
Input schema / properties / change_itemsAdded value: +{ + "description": "JSON request body field — change Event Line Items", + "items": {}, + "type": "array" +} - added
Input schema / properties / change_reasonAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — the change reason for this Change Events operation", + "type": "object" +} - added
Input schema / properties / change_typeAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — the change type for this Change Events operation", + "type": "object" +} - added
Input schema / properties / custom_field_%{custom_field_definition_id}Added value: +{ + "description": "JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ...", + "type": "string" +} - added
Input schema / properties / descriptionAdded value: +{ + "description": "JSON request body field — the description for this Change Events operation", + "type": "string" +} - added
Input schema / properties / event_originAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — the event origin for this Change Events operation", + "type": "object" +} - added
Input schema / properties / external_dataAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — the external data for this Change Events operation", + "type": "object" +} - added
Input schema / properties / numberAdded value: +{ + "description": "JSON request body field — the number for this Change Events operation", + "type": "string" +} - removed
Input schema / properties / origin_global_idRemoved value: -{ - "description": "Global ID of the record to associate as the Change Event origin. Provide instead of `change_event_origin_id` and `change_event_origin_type`.", - "type": "string" -} - added
Input schema / properties / prime_contract_for_estimatesAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — prime_contract_for_estimates", + "type": "object" +} - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - added
Input schema / properties / scopeAdded value: +{ + "description": "JSON request body field — event Scope", + "enum": [ + "tbd", + "in_scope", + "out_of_scope" + ], + "type": "string" +} - added
Input schema / properties / sourceAdded value: +{ + "description": "JSON request body field — the Change Event source refers to the resource that was responsible for creating this Change Event.", + "enum": [ + "budget_change", + "field_initiated_change_orders" + ], + "type": "string" +} - added
Input schema / properties / source_of_revenue_romAdded value: +{ + "description": "JSON request body field — revenue ROM source for this Change Event", + "enum": [ + "latest_cost", + "manual", + "automatic", + "no_revenue_expected" + ], + "type": "string" +} - added
Input schema / properties / statusAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — the status for this Change Events operation", + "type": "object" +} - added
Input schema / properties / titleAdded value: +{ + "description": "JSON request body field — the title for this Change Events operation", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "project_id", - "change_event" -]New value: +[ + "project_id", + "scope", + "status" +]
- Changed
create_change_event_production_quantity7 fields changed- changed
Input schema / properties / change_event_id / descriptionPrevious value: -"Unique identifier for the Change Event"New value: +"URL path parameter — unique identifier for the Change Event" - changed
Input schema / properties / cost_code_id / descriptionPrevious value: -"ID of the associated Cost Code"New value: +"JSON request body field — iD of the associated Cost Code" - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Change Events operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity / descriptionPrevious value: -"Quantity"New value: +"JSON request body field — the quantity for this Change Events operation" - changed
Input schema / properties / uom / descriptionPrevious value: -"Unit of Measure"New value: +"JSON request body field — unit of Measure" - changed
Input schema / properties / wbs_code_id / descriptionPrevious value: -"ID of the associated WBS Code"New value: +"JSON request body field — iD of the associated WBS Code"
- Removed
create_change_event_v1_1 - Changed
create_change_order_package3 fields changed- changed
Input schema / properties / change_order / descriptionPrevious value: -"change_order"New value: +"JSON request body field — the change order for this Change Orders operation" - changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_change_order_request3 fields changed- changed
Input schema / properties / change_order / descriptionPrevious value: -"change_order"New value: +"JSON request body field — the change order for this Change Orders operation" - changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_checklist5 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Checklist's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — checklist's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / list / descriptionPrevious value: -"Checklist object"New value: +"JSON request body field — checklist object" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project"New value: +"JSON request body field — the ID of the Project" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / template_id / descriptionPrevious value: -"The ID of the Template to copy from."New value: +"JSON request body field — the ID of the Template to copy from."
- Changed
create_checklist_comment4 fields changed- changed
Input schema / properties / comment / descriptionPrevious value: -"Comment object"New value: +"JSON request body field — comment object" - changed
Input schema / properties / item_id / descriptionPrevious value: -"The ID of the Item"New value: +"JSON request body field — unique identifier of the item" - changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project"New value: +"JSON request body field — the ID of the Project"
- Changed
create_checklist_inspection4 fields changed- changed
Input schema / properties / list / descriptionPrevious value: -"list"New value: +"JSON request body field — the list for this Inspections operation" - changed
Input schema / properties / list_template_id / descriptionPrevious value: -"ID of the Checklist List Template (Inspection Template) that the Checklist (Inspection) will be created from"New value: +"JSON request body field — iD of the Checklist List Template (Inspection Template) that the Checklist (Inspection) will be created from" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Removed
create_checklist_inspection_v1_1 - Changed
create_checklist_item_attachment5 fields changed- changed
Input schema / properties / attachment / descriptionPrevious value: -"Item Attachment.\nTo upload an attachment you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with the `attachment` file."New value: +"JSON request body field — item Attachment.\nTo upload an attachment you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with the `attachment` file." - changed
Input schema / properties / item_id / descriptionPrevious value: -"Checklist Item ID"New value: +"URL path parameter — unique identifier of the item" - changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Item belongs to"New value: +"JSON request body field — the ID of the Project the Item belongs to" - changed
Input schema / properties / section_id / descriptionPrevious value: -"The ID of the Section the Item belongs to"New value: +"JSON request body field — the ID of the Section the Item belongs to"
- Changed
create_checklist_item_response7 fields changed- changed
Input schema / properties / date_value / descriptionPrevious value: -"Date Response - Value for Open Ended Date Items. Format should be YYYY-MM-DD"New value: +"JSON request body field — date Response - Value for Open Ended Date Items. Format should be YYYY-MM-DD" - changed
Input schema / properties / item_id / descriptionPrevious value: -"Checklist Item ID"New value: +"URL path parameter — unique identifier of the item" - changed
Input schema / properties / number_value / descriptionPrevious value: -"Number Response - Value for Open Ended Number Items"New value: +"JSON request body field — number Response - Value for Open Ended Number Items" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / response_option_id / descriptionPrevious value: -"Response Option ID - Value for Multiple Choice Response Items"New value: +"JSON request body field — response Option ID - Value for Multiple Choice Response Items" - changed
Input schema / properties / status / descriptionPrevious value: -"Item Status - Value for Default-Typed items. Allowed values are 'conforming', 'non_conforming', and 'not_applicable'."New value: +"JSON request body field — item Status - Value for Default-Typed items. Allowed values are 'conforming', 'non_conforming', and 'not_applicable'." - changed
Input schema / properties / text_value / descriptionPrevious value: -"Text Response - Value for Open Ended Text Items"New value: +"JSON request body field — text Response - Value for Open Ended Text Items"
- Changed
create_checklist_schedule_attachment3 fields changed- changed
Input schema / properties / attachment / descriptionPrevious value: -"Checklist Schedule Attachment. To upload an attachment you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with the `attachment..."New value: +"JSON request body field — checklist Schedule Attachment. To upload an attachment you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with the `attachment..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / schedule_id / descriptionPrevious value: -"Checklist Schedule ID"New value: +"URL path parameter — checklist Schedule ID"
- Changed
create_checklist_section3 fields changed- changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Section belongs to"New value: +"JSON request body field — the ID of the Project the Section belongs to" - changed
Input schema / properties / section / descriptionPrevious value: -"Section object"New value: +"JSON request body field — section object"
- Changed
create_checklist_signature5 fields changed- changed
Input schema / properties / attachment / descriptionPrevious value: -"Attachment representing the Signature.\nTo upload an attachment you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with the `si..."New value: +"JSON request body field — attachment representing the Signature.\nTo upload an attachment you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with the `si..." - changed
Input schema / properties / attachment_string / descriptionPrevious value: -"Base64 encoded string representing PNG image of signature"New value: +"JSON request body field — base64 encoded string representing PNG image of signature" - changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / signature_request_id / descriptionPrevious value: -"Checklist Signature Request ID"New value: +"URL path parameter — checklist Signature Request ID"
- Changed
create_checklist_signature_request3 fields changed- changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / signatory_id / descriptionPrevious value: -"ID of the User requested to sign"New value: +"JSON request body field — iD of the User requested to sign"
- Changed
create_classification3 fields changed- changed
Input schema / properties / abbreviation / descriptionPrevious value: -"The shortened form of classification"New value: +"JSON request body field — the shortened form of classification" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the classification"New value: +"JSON request body field — name of the classification"
- Changed
create_commitment_change_order31 fields changed- changed
Input schema / properties / attachment_ids / descriptionPrevious value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response" - changed
Input schema / properties / batch_id / descriptionPrevious value: -"Unique identifier for a change order batch."New value: +"JSON request body field — unique identifier for a change order batch." - changed
Input schema / properties / change_event_attachment_ids / descriptionPrevious value: -"List of attachment IDs to attach. These must presently be associated with Change Events."New value: +"JSON request body field — list of attachment IDs to attach. These must presently be associated with Change Events." - changed
Input schema / properties / change_order_change_reason_id / descriptionPrevious value: -"Unique identifier for the change reason."New value: +"JSON request body field — unique identifier for the change reason." - changed
Input schema / properties / contract_id / descriptionPrevious value: -"Unique identifier for the contract."New value: +"JSON request body field — unique identifier for the contract." - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Commitments operation" - changed
Input schema / properties / designated_reviewer_id / descriptionPrevious value: -"Unique identifier for the designated reviewer. This field is only supported for single-tier projects. Behavior is undefined in multi-tier projects."New value: +"JSON request body field — unique identifier for the designated reviewer. This field is only supported for single-tier projects. Behavior is undefined in multi-tier projects." - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / due_date / descriptionPrevious value: -"Due Date"New value: +"JSON request body field — due date in YYYY-MM-DD format" - changed
Input schema / properties / enable_ssov / descriptionPrevious value: -"Whether to enable SSOV on this Change Order. Only applicable to Commitment Change Orders."New value: +"JSON request body field — whether to enable SSOV on this Change Order. Only applicable to Commitment Change Orders." - changed
Input schema / properties / executed / descriptionPrevious value: -"Whether or not the Change Order is executed"New value: +"JSON request body field — whether or not the Change Order is executed" - changed
Input schema / properties / field_change / descriptionPrevious value: -"Field Change"New value: +"JSON request body field — the field change for this Commitments operation" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / invoiced_date / descriptionPrevious value: -"Invoiced Date"New value: +"JSON request body field — the invoiced date in YYYY-MM-DD format" - changed
Input schema / properties / location_id / descriptionPrevious value: -"Unique identifier for the location."New value: +"JSON request body field — unique identifier for the location." - changed
Input schema / properties / number / descriptionPrevious value: -"Number of the Change Order"New value: +"JSON request body field — number of the Change Order" - changed
Input schema / properties / paid / descriptionPrevious value: -"Whether or not the Commitment Change Order is paid"New value: +"JSON request body field — whether or not the Commitment Change Order is paid" - changed
Input schema / properties / paid_date / descriptionPrevious value: -"Paid Date"New value: +"JSON request body field — the paid date in YYYY-MM-DD format" - changed
Input schema / properties / private / descriptionPrevious value: -"Whether or not the Commitment Change Order is private"New value: +"JSON request body field — whether or not the Commitment Change Order is private" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / reason / descriptionPrevious value: -"Reason for the change order"New value: +"JSON request body field — reason for the change order" - changed
Input schema / properties / received_from_id / descriptionPrevious value: -"Unique identifier for the received from entity."New value: +"JSON request body field — unique identifier for the received from entity." - changed
Input schema / properties / reference / descriptionPrevious value: -"Reference"New value: +"JSON request body field — the reference for this Commitments operation" - changed
Input schema / properties / revision / descriptionPrevious value: -"Revision Number"New value: +"JSON request body field — revision Number" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / schedule_impact_amount / descriptionPrevious value: -"Schedule impact in days"New value: +"JSON request body field — schedule impact in days" - changed
Input schema / properties / signature_required / descriptionPrevious value: -"Whether a signature will be required for this Change Order"New value: +"JSON request body field — whether a signature will be required for this Change Order" - changed
Input schema / properties / signed_change_order_received_date / descriptionPrevious value: -"Signed Change Order Received Date"New value: +"JSON request body field — signed Change Order Received Date" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Commitments operation" - changed
Input schema / properties / title / descriptionPrevious value: -"Title of the Contract"New value: +"JSON request body field — title of the Contract"
- Changed
create_commitment_change_order_batch28 fields changed- changed
Input schema / properties / attachment_ids / descriptionPrevious value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response" - changed
Input schema / properties / change_event_attachment_ids / descriptionPrevious value: -"List of attachment IDs to attach. These must presently be associated with Change Events."New value: +"JSON request body field — list of attachment IDs to attach. These must presently be associated with Change Events." - changed
Input schema / properties / change_order_ids / descriptionPrevious value: -"Array of Change Order (PCO) IDs to link to this batch. This field is only supported for two-tier projects."New value: +"JSON request body field — array of Change Order (PCO) IDs to link to this batch. This field is only supported for two-tier projects." - changed
Input schema / properties / contract_id / descriptionPrevious value: -"Unique identifier for the contract."New value: +"JSON request body field — unique identifier for the contract." - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Commitments operation" - changed
Input schema / properties / designated_reviewer_id / descriptionPrevious value: -"Unique identifier for the designated reviewer. This field is only supported for single-tier projects. Behavior is undefined in multi-tier projects."New value: +"JSON request body field — unique identifier for the designated reviewer. This field is only supported for single-tier projects. Behavior is undefined in multi-tier projects." - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / due_date / descriptionPrevious value: -"Due Date"New value: +"JSON request body field — due date in YYYY-MM-DD format" - changed
Input schema / properties / executed / descriptionPrevious value: -"Whether or not the Change Order Batch is executed"New value: +"JSON request body field — whether or not the Change Order Batch is executed" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / invoiced_date / descriptionPrevious value: -"Invoiced Date"New value: +"JSON request body field — the invoiced date in YYYY-MM-DD format" - changed
Input schema / properties / legacy_request_ids / descriptionPrevious value: -"Array of Change Order Request IDs to link to this batch. This field is only supported for three-tier projects."New value: +"JSON request body field — array of Change Order Request IDs to link to this batch. This field is only supported for three-tier projects." - changed
Input schema / properties / number / descriptionPrevious value: -"Number of the Change Order Batch"New value: +"JSON request body field — number of the Change Order Batch" - changed
Input schema / properties / paid_date / descriptionPrevious value: -"Paid Date"New value: +"JSON request body field — the paid date in YYYY-MM-DD format" - changed
Input schema / properties / private / descriptionPrevious value: -"Whether or not the Change Order Batch is private"New value: +"JSON request body field — whether or not the Change Order Batch is private" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / revised_substantial_completion_date / descriptionPrevious value: -"Revised substantial completion date"New value: +"JSON request body field — revised substantial completion date" - changed
Input schema / properties / revision / descriptionPrevious value: -"Revision Number"New value: +"JSON request body field — revision Number" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / schedule_impact_amount / descriptionPrevious value: -"Schedule impact in days"New value: +"JSON request body field — schedule impact in days" - changed
Input schema / properties / signature_required / descriptionPrevious value: -"Whether a signature will be required for this Change Order Batch"New value: +"JSON request body field — whether a signature will be required for this Change Order Batch" - changed
Input schema / properties / signed_change_order_received_date / descriptionPrevious value: -"Signed Change Order Batch Received Date"New value: +"JSON request body field — signed Change Order Batch Received Date" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Commitments operation" - changed
Input schema / properties / title / descriptionPrevious value: -"Title of the Change Order Batch"New value: +"JSON request body field — title of the Change Order Batch" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
- Added
create_commitment_change_order_line_item - Removed
create_commitment_change_order_line_item_v2_0 - Added
create_commitment_contract - Added
create_commitment_contract_line_item - Removed
create_commitment_contract_line_item_v2_0 - Removed
create_commitment_contract_v2_0 - Changed
create_communication_tag2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / title / descriptionPrevious value: -"name of the tag"New value: +"JSON request body field — name of the tag"
- Changed
create_company_action_plan_template_item5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Action Plans operation" - changed
Input schema / properties / holding_type / descriptionPrevious value: -"Specifies whether the current item holds all the succeeding items in the Action Plan Section or the Action Plan"New value: +"JSON request body field — specifies whether the current item holds all the succeeding items in the Action Plan Section or the Action Plan" - changed
Input schema / properties / plan_template_section_id / descriptionPrevious value: -"ID of the Company Action Plan Template Section it belongs to"New value: +"JSON request body field — iD of the Company Action Plan Template Section it belongs to" - changed
Input schema / properties / title / descriptionPrevious value: -"Title"New value: +"JSON request body field — the title for this Action Plans operation"
- Changed
create_company_action_plan_template_item_assignee5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / is_holding / descriptionPrevious value: -"Indicates whether or not the Assignee's signature is holding"New value: +"JSON request body field — indicates whether or not the Assignee's signature is holding" - changed
Input schema / properties / plan_template_item_id / descriptionPrevious value: -"Company Action Plan Template Item ID of the Company Action Plan Template Item Assignee to be set"New value: +"JSON request body field — company Action Plan Template Item ID of the Company Action Plan Template Item Assignee to be set" - changed
Input schema / properties / role / descriptionPrevious value: -"Role of the Company Action Plan Template Item Assignee to be set"New value: +"JSON request body field — role of the Company Action Plan Template Item Assignee to be set" - changed
Input schema / properties / verification_method_id / descriptionPrevious value: -"Verification Method ID of the Company Action Plan Template Item Assignee to be set"New value: +"JSON request body field — verification Method ID of the Company Action Plan Template Item Assignee to be set"
- Changed
create_company_action_plan_template_reference4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / payload / descriptionPrevious value: -"To upload an attachment you must upload the entire payload as `multipart/form-data` content-type"New value: +"JSON request body field — to upload an attachment you must upload the entire payload as `multipart/form-data` content-type" - changed
Input schema / properties / plan_template_item_id / descriptionPrevious value: -"ID of the associated Template Item"New value: +"JSON request body field — iD of the associated Template Item" - changed
Input schema / properties / type / descriptionPrevious value: -"Company Action Plan Template Reference Type"New value: +"JSON request body field — company Action Plan Template Reference Type"
- Changed
create_company_action_plan_template_section3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / plan_template_id / descriptionPrevious value: -"ID of the Company Action Plan Template to be created under"New value: +"JSON request body field — iD of the Company Action Plan Template to be created under" - changed
Input schema / properties / title / descriptionPrevious value: -"Title"New value: +"JSON request body field — the title for this Action Plans operation"
- Changed
create_company_action_plan_template_test_record_request4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / payload / descriptionPrevious value: -"payload"New value: +"JSON request body field — the payload for this Action Plans operation" - changed
Input schema / properties / plan_template_item_id / descriptionPrevious value: -"ID of the associated Company Action Plan Template Item"New value: +"JSON request body field — iD of the associated Company Action Plan Template Item" - changed
Input schema / properties / type / descriptionPrevious value: -"Action Plan Template Test Record Type"New value: +"JSON request body field — action Plan Template Test Record Type"
- Changed
create_company_action_plan_templates5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Action Plans operation" - changed
Input schema / properties / plan_type_id / descriptionPrevious value: -"ID of an Action Plan Type"New value: +"JSON request body field — iD of an Action Plan Type" - added
Input schema / properties / privateAdded value: +{ + "description": "JSON request body field — privacy flag of the Company Action Plan Template", + "type": "boolean" +} - changed
Input schema / properties / title / descriptionPrevious value: -"Title"New value: +"JSON request body field — the title for this Action Plans operation"
- Removed
create_company_action_plan_templates_v1_1 - Changed
create_company_checklist_template3 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Checklist Template's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]..."New value: +"JSON request body field — checklist Template's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]..." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / list_template / descriptionPrevious value: -"Checklist Template object"New value: +"JSON request body field — checklist Template object"
- Changed
create_company_checklist_template_section4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / list_template_id / descriptionPrevious value: -"The ID of the Checklist Template"New value: +"URL path parameter — the ID of the Checklist Template" - changed
Input schema / properties / name / descriptionPrevious value: -"Name"New value: +"JSON request body field — the name for this Inspections operation" - changed
Input schema / properties / position / descriptionPrevious value: -"The position of Section"New value: +"JSON request body field — the position of Section"
- Changed
create_company_classifications_for_project1 field changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
create_company_currency_configuration - Removed
create_company_currency_configuration_v2_0 - Changed
create_company_exchange_rates3 fields changed- changed
Input schema / properties / base_currency_iso_code / descriptionPrevious value: -"Base Currency ISO Code"New value: +"JSON request body field — base Currency ISO Code" - changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / exchange_rates / descriptionPrevious value: -"Company exchange rates"New value: +"JSON request body field — company exchange rates"
- Changed
create_company_file2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / file / descriptionPrevious value: -"file"New value: +"JSON request body field — the file for this Documents operation"
- Changed
create_company_file_version3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / file_id / descriptionPrevious value: -"The id of the File"New value: +"Query string parameter — unique identifier of the file" - changed
Input schema / properties / file_version / descriptionPrevious value: -"file_version"New value: +"JSON request body field — the file version for this Documents operation"
- Changed
create_company_folder6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / explicit_permissions / descriptionPrevious value: -"Set folder to private (true/false)"New value: +"JSON request body field — set folder to private (true/false)" - changed
Input schema / properties / is_tracked / descriptionPrevious value: -"Status if a folder should be tracked (true/false)"New value: +"JSON request body field — status if a folder should be tracked (true/false)" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the folder"New value: +"JSON request body field — the Name of the folder" - changed
Input schema / properties / parent_id / descriptionPrevious value: -"The ID of the parent folder to create the folder in. If not set the folder will be created under the root folder."New value: +"JSON request body field — the ID of the parent folder to create the folder in. If not set the folder will be created under the root folder."
- Changed
create_company_form_template3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / fillable_pdf / descriptionPrevious value: -"Form Template's Fillable PDF.\nTo upload a fillable PDF you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `fillable_pdf` ..."New value: +"JSON request body field — form Template's Fillable PDF.\nTo upload a fillable PDF you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `fillable_pdf` ..." - changed
Input schema / properties / form_template / descriptionPrevious value: -"form_template"New value: +"JSON request body field — the form template for this Forms operation"
- Changed
create_company_inspection_template_item7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / inspection_template_id / descriptionPrevious value: -"The ID of the Company Inspection Template"New value: +"URL path parameter — the ID of the Company Inspection Template" - changed
Input schema / properties / name / descriptionPrevious value: -"Name"New value: +"JSON request body field — the name for this Inspections operation" - changed
Input schema / properties / position / descriptionPrevious value: -"Item position"New value: +"JSON request body field — item position" - changed
Input schema / properties / response_set_id / descriptionPrevious value: -"Response Set ID"New value: +"JSON request body field — unique identifier of the response set" - changed
Input schema / properties / section_id / descriptionPrevious value: -"Response Set ID"New value: +"JSON request body field — unique identifier of the section" - changed
Input schema / properties / type / descriptionPrevious value: -"Item type"New value: +"JSON request body field — item type"
- Changed
create_company_inspection_template_item_reference5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / inspection_template_id / descriptionPrevious value: -"The ID of the Company Inspection Template"New value: +"URL path parameter — the ID of the Company Inspection Template" - changed
Input schema / properties / item_id / descriptionPrevious value: -"ID of the associated Company Inspection Template Item"New value: +"JSON request body field — iD of the associated Company Inspection Template Item" - changed
Input schema / properties / payload / descriptionPrevious value: -"To upload an attachment you must upload the entire payload as `multipart/form-data` content-type"New value: +"JSON request body field — to upload an attachment you must upload the entire payload as `multipart/form-data` content-type" - changed
Input schema / properties / type / descriptionPrevious value: -"Company Inspection Template Item Reference Type"New value: +"JSON request body field — company Inspection Template Item Reference Type"
- Changed
create_company_insurance18 fields changed- changed
Input schema / properties / additional_insured / descriptionPrevious value: -"Additional Individuals and/or Companies Insured"New value: +"JSON request body field — additional Individuals and/or Companies Insured" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / division_template / descriptionPrevious value: -"Division Template"New value: +"JSON request body field — the division template for this Directory operation" - changed
Input schema / properties / effective_date / descriptionPrevious value: -"Effective date"New value: +"JSON request body field — the effective date in YYYY-MM-DD format" - changed
Input schema / properties / enable_expired_insurance_notifications / descriptionPrevious value: -"Enable/Disable expired insurance notifications"New value: +"JSON request body field — enable/Disable expired insurance notifications" - changed
Input schema / properties / exempt / descriptionPrevious value: -"Exempt status"New value: +"JSON request body field — exempt status" - changed
Input schema / properties / expiration_date / descriptionPrevious value: -"Expiration date"New value: +"JSON request body field — the expiration date in YYYY-MM-DD format" - changed
Input schema / properties / info_received / descriptionPrevious value: -"Information received (or not)"New value: +"JSON request body field — information received (or not)" - changed
Input schema / properties / insurance_sets / descriptionPrevious value: -"Insurance Sets"New value: +"JSON request body field — the insurance sets for this Directory operation" - changed
Input schema / properties / insurance_type / descriptionPrevious value: -"Insurance type"New value: +"JSON request body field — the insurance type for this Directory operation" - changed
Input schema / properties / limit / descriptionPrevious value: -"Limit"New value: +"JSON request body field — the limit for this Directory operation" - changed
Input schema / properties / name / descriptionPrevious value: -"Provider name"New value: +"JSON request body field — provider name" - changed
Input schema / properties / notes / descriptionPrevious value: -"Notes"New value: +"JSON request body field — the notes for this Directory operation" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"Origin data"New value: +"JSON request body field — the origin data for this Directory operation" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin" - changed
Input schema / properties / policy_number / descriptionPrevious value: -"Policy number"New value: +"JSON request body field — the policy number for this Directory operation" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Directory operation" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"JSON request body field — unique identifier of the vendor"
- Changed
create_company_level_email10 fields changed- changed
Input schema / properties / bcc_distribution_ids / descriptionPrevious value: -"User IDs on the email BCC distribution"New value: +"JSON request body field — user IDs on the email BCC distribution" - changed
Input schema / properties / body / descriptionPrevious value: -"Body of the email"New value: +"JSON request body field — body of the email" - changed
Input schema / properties / cc_distribution_ids / descriptionPrevious value: -"User IDs on the email CC distribution"New value: +"JSON request body field — user IDs on the email CC distribution" - changed
Input schema / properties / communication_id / descriptionPrevious value: -"Communication ID"New value: +"URL path parameter — unique identifier of the communication" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / distribution_ids / descriptionPrevious value: -"An array of IDs of the Distributions of the topic"New value: +"JSON request body field — an array of IDs of the Distributions of the topic" - changed
Input schema / properties / prostore_file_ids / descriptionPrevious value: -"Prostore file IDs"New value: +"JSON request body field — array of prostore file identifiers" - changed
Input schema / properties / topic_id / descriptionPrevious value: -"Topic ID"New value: +"Query string parameter — unique identifier of the topic" - changed
Input schema / properties / topic_type / descriptionPrevious value: -"The type of the topic to be associated with the communication"New value: +"Query string parameter — the type of the topic to be associated with the communication" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"Upload UUIDs"New value: +"JSON request body field — array of upload identifiers"
- Changed
create_company_level_email_communication5 fields changed- changed
Input schema / properties / communication / descriptionPrevious value: -"communication"New value: +"JSON request body field — the communication for this Emails operation" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / email / descriptionPrevious value: -"email"New value: +"JSON request body field — the email for this Emails operation" - changed
Input schema / properties / topic_id / descriptionPrevious value: -"Topic ID"New value: +"Query string parameter — unique identifier of the topic" - changed
Input schema / properties / topic_type / descriptionPrevious value: -"The type of the topic to be associated with the communication"New value: +"Query string parameter — the type of the topic to be associated with the communication"
- Changed
create_company_office2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"The ID of the Company the Office belongs to"New value: +"JSON request body field — the ID of the Company the Office belongs to" - changed
Input schema / properties / office / descriptionPrevious value: -"Office object"New value: +"JSON request body field — office object"
- Changed
create_company_person10 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"The active status of the Company Person"New value: +"JSON request body field — the active status of the Company Person" - changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / employee_id / descriptionPrevious value: -"The Employee ID of the Company Person"New value: +"JSON request body field — the Employee ID of the Company Person" - changed
Input schema / properties / first_name / descriptionPrevious value: -"The First Name of the Company Person"New value: +"JSON request body field — the First Name of the Company Person" - changed
Input schema / properties / is_employee / descriptionPrevious value: -"The Employee status of the Company Person"New value: +"JSON request body field — the Employee status of the Company Person" - changed
Input schema / properties / job_title / descriptionPrevious value: -"The Job Title of the Company Person"New value: +"JSON request body field — the Job Title of the Company Person" - changed
Input schema / properties / last_name / descriptionPrevious value: -"The Last Name of the Company Person"New value: +"JSON request body field — the Last Name of the Company Person" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"The Origin ID of the Company User"New value: +"JSON request body field — the Origin ID of the Company User" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view of the resource to return (which attributes should be present in the response). If a valid view is not provided, it will default to normal."New value: +"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). If a valid view is not provided, it will default to normal." - changed
Input schema / properties / work_classification_id / descriptionPrevious value: -"The unique identifier for the work classification of the Company Person."New value: +"JSON request body field — the unique identifier for the work classification of the Company Person."
- Changed
create_company_segment_item6 fields changed- changed
Input schema / properties / code / descriptionPrevious value: -"Segment Item Code"New value: +"JSON request body field — segment Item Code" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"Segment Item Name"New value: +"JSON request body field — segment Item Name" - changed
Input schema / properties / parent_id / descriptionPrevious value: -"Parent ID"New value: +"JSON request body field — unique identifier of the parent" - changed
Input schema / properties / segment_id / descriptionPrevious value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment" - changed
Input schema / properties / segment_item_list_id / descriptionPrevious value: -"Segment Item List ID"New value: +"JSON request body field — segment Item List ID"
- Changed
create_company_tag9 fields changed- changed
Input schema / properties / abbreviation / descriptionPrevious value: -"A 5-character max String representing the abbreviation that will appear in most Tag views. Defaults to the first 5 characters of the name if not provided."New value: +"JSON request body field — a 5-character max String representing the abbreviation that will appear in most Tag views. Defaults to the first 5 characters of the name if not provided." - changed
Input schema / properties / categories / descriptionPrevious value: -"Array of Tag Categories this Tag should be available to, if Tag Categories are enabled."New value: +"JSON request body field — array of Tag Categories this Tag should be available to, if Tag Categories are enabled." - changed
Input schema / properties / color / descriptionPrevious value: -"Hexadecimal color code for the Tag, used for categorization and visual distinction."New value: +"JSON request body field — hexadecimal color code for the Tag, used for categorization and visual distinction." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. NOTE - this is a Laborchart company ID."New value: +"JSON request body field — unique identifier for the company. NOTE - this is a Laborchart company ID." - changed
Input schema / properties / expr_days_warning / descriptionPrevious value: -"Number of days before expiration when the Tag should be in \"warning\" mode. Only relevant if `require_expr_date` is true."New value: +"JSON request body field — number of days before expiration when the Tag should be in \"warning\" mode. Only relevant if `require_expr_date` is true." - changed
Input schema / properties / globally_accessible / descriptionPrevious value: -"Controls whether the Tag should be globally available to all current and future Groups."New value: +"JSON request body field — controls whether the Tag should be globally available to all current and future Groups." - changed
Input schema / properties / group_ids / descriptionPrevious value: -"Array of UUIDs for which Groups this Tag should be available to or be removed from depending on context. For adding availability, if `globally_accessible` is true, this can be an empty array."New value: +"JSON request body field — array of UUIDs for which Groups this Tag should be available to or be removed from depending on context. For adding availability, if `globally_accessible` is true, this can be an empty array." - changed
Input schema / properties / name / descriptionPrevious value: -"The Tag's name."New value: +"JSON request body field — the Tag's name." - changed
Input schema / properties / require_expr_date / descriptionPrevious value: -"Controls whether the Tag should require an expiration date when applied to a Person."New value: +"JSON request body field — controls whether the Tag should require an expiration date when applied to a Person."
- Changed
create_company_upload7 fields changed- changed
Input schema / properties / attachment_content_disposition / descriptionPrevious value: -"The content type set through this parameter will be used by the storage system during download, similar to the response_filename. When set to true, the file will be downloaded as an attachment. Oth..."New value: +"JSON request body field — the content type set through this parameter will be used by the storage system during download, similar to the response_filename. When set to true, the file will be downloaded as an attachment. Oth..." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / response_content_type / descriptionPrevious value: -"The content-type set through this parameter will be used by the storage\nservice during download just like the response_filename. Setting this\nvalue is less important because HTTP clients and operat..."New value: +"JSON request body field — the content-type set through this parameter will be used by the storage\nservice during download just like the response_filename. Setting this\nvalue is less important because HTTP clients and operat..." - changed
Input schema / properties / response_filename / descriptionPrevious value: -"By setting a filename you ensure that the storage service knows the\nfilename of the upload. Files are often downloaded directly from the\nstorage service and without the filename they will save on t..."New value: +"JSON request body field — by setting a filename you ensure that the storage service knows the\nfilename of the upload. Files are often downloaded directly from the\nstorage service and without the filename they will save on t..." - changed
Input schema / properties / segments / descriptionPrevious value: -"Upload segments"New value: +"JSON request body field — upload segments" - changed
Input schema / properties / size / descriptionPrevious value: -"File size in bytes"New value: +"JSON request body field — file size in bytes" - changed
Input schema / requiredPrevious value: -[ - "company_id" -]New value: +[ + "company_id", + "response_filename" +]
- Removed
create_company_upload_v1_1 - Changed
create_company_user_v1_028 fields changed- changed
Input schema / properties / address / descriptionPrevious value: -"The Address of the Company User"New value: +"JSON request body field — the Address of the Company User" - changed
Input schema / properties / avatar / descriptionPrevious value: -"The Avatar of the Company User.\nTo upload avatar you must upload whole payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `user[avatar]` as file."New value: +"JSON request body field — the Avatar of the Company User.\nTo upload avatar you must upload whole payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `user[avatar]` as file." - changed
Input schema / properties / business_phone / descriptionPrevious value: -"The Business Phone of the Company User"New value: +"JSON request body field — the Business Phone of the Company User" - changed
Input schema / properties / business_phone_extension / descriptionPrevious value: -"The Business Phone Extension of the Company User"New value: +"JSON request body field — the Business Phone Extension of the Company User" - changed
Input schema / properties / city / descriptionPrevious value: -"The City of the Company User"New value: +"JSON request body field — the City of the Company User" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / company_permission_template_id / descriptionPrevious value: -"The ID of the Company Permission Template for the Company User. Requests including this parameter will be rejected unless the requesting user has Directory Admin permissions"New value: +"JSON request body field — the ID of the Company Permission Template for the Company User. Requests including this parameter will be rejected unless the requesting user has Directory Admin permissions" - changed
Input schema / properties / country_code / descriptionPrevious value: -"The Country Code of the Company User (ISO-3166 Alpha-2 format)"New value: +"JSON request body field — the Country Code of the Company User (ISO-3166 Alpha-2 format)" - changed
Input schema / properties / default_permission_template_id / descriptionPrevious value: -"The ID of the default Permission Template for the Company User. Requests including this parameter will be rejected unless the requesting user has Directory Admin permissions"New value: +"JSON request body field — the ID of the default Permission Template for the Company User. Requests including this parameter will be rejected unless the requesting user has Directory Admin permissions" - changed
Input schema / properties / email_address / descriptionPrevious value: -"The Email Address of the Company User. Update requests including this parameter will be rejected unless the requesting user has Directory Admin permissions"New value: +"JSON request body field — the Email Address of the Company User. Update requests including this parameter will be rejected unless the requesting user has Directory Admin permissions" - changed
Input schema / properties / email_signature / descriptionPrevious value: -"The Email Signature of the Company User"New value: +"JSON request body field — the Email Signature of the Company User" - changed
Input schema / properties / employee_id / descriptionPrevious value: -"The ID of the Employee of the Company User when `user[is_employee]` is set to `true`"New value: +"JSON request body field — the ID of the Employee of the Company User when `user[is_employee]` is set to `true`" - changed
Input schema / properties / fax_number / descriptionPrevious value: -"The Fax Number of the Company User"New value: +"JSON request body field — the Fax Number of the Company User" - changed
Input schema / properties / first_name / descriptionPrevious value: -"The First Name of the Company User"New value: +"JSON request body field — the First Name of the Company User" - changed
Input schema / properties / initials / descriptionPrevious value: -"The Initials of the Company User"New value: +"JSON request body field — the Initials of the Company User" - changed
Input schema / properties / is_active / descriptionPrevious value: -"The Active status of the Company User"New value: +"JSON request body field — the Active status of the Company User" - changed
Input schema / properties / is_employee / descriptionPrevious value: -"The Employee status of the Company User"New value: +"JSON request body field — the Employee status of the Company User" - changed
Input schema / properties / job_title / descriptionPrevious value: -"The Job Title of the Company User"New value: +"JSON request body field — the Job Title of the Company User" - changed
Input schema / properties / last_name / descriptionPrevious value: -"The Last Name of the Company User"New value: +"JSON request body field — the Last Name of the Company User" - changed
Input schema / properties / mobile_phone / descriptionPrevious value: -"The Mobile Phone of the Company User"New value: +"JSON request body field — the Mobile Phone of the Company User" - changed
Input schema / properties / notes / descriptionPrevious value: -"The Notes (notes, keywords, tags) of the Company User"New value: +"JSON request body field — the Notes (notes, keywords, tags) of the Company User" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"The Origin Data of the Company User"New value: +"JSON request body field — the Origin Data of the Company User" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"The Origin ID of the Company User"New value: +"JSON request body field — the Origin ID of the Company User" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / state_code / descriptionPrevious value: -"The State Code of the Company User (ISO-3166 Alpha-2 format)"New value: +"JSON request body field — the State Code of the Company User (ISO-3166 Alpha-2 format)" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"The ID of the Vendor of the Company User"New value: +"JSON request body field — the ID of the Vendor of the Company User" - changed
Input schema / properties / work_classification_id / descriptionPrevious value: -"The ID of the Work Classification for the Company User"New value: +"JSON request body field — the ID of the Work Classification for the Company User" - changed
Input schema / properties / zip / descriptionPrevious value: -"The Zip code of the Company User"New value: +"JSON request body field — the Zip code of the Company User"
- Removed
create_company_user_v1_0_2 - Removed
create_company_user_v1_1 - Removed
create_company_user_v1_2 - Changed
create_company_user_v1_329 fields changed- changed
Input schema / properties / address / descriptionPrevious value: -"The Address of the Company User"New value: +"JSON request body field — the Address of the Company User" - changed
Input schema / properties / avatar / descriptionPrevious value: -"The Avatar of the Company User.\nTo upload avatar you must upload whole payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `user[avatar]` as file."New value: +"JSON request body field — the Avatar of the Company User.\nTo upload avatar you must upload whole payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `user[avatar]` as file." - changed
Input schema / properties / bid_contact / descriptionPrevious value: -"Sets the user as a bid contact for the vendor it is associated with. `vendor_id` must also be provided for this to be set."New value: +"JSON request body field — sets the user as a bid contact for the vendor it is associated with. `vendor_id` must also be provided for this to be set." - changed
Input schema / properties / business_phone / descriptionPrevious value: -"The Business Phone of the Company User"New value: +"JSON request body field — the Business Phone of the Company User" - changed
Input schema / properties / business_phone_extension / descriptionPrevious value: -"The Business Phone Extension of the Company User"New value: +"JSON request body field — the Business Phone Extension of the Company User" - changed
Input schema / properties / city / descriptionPrevious value: -"The City of the Company User"New value: +"JSON request body field — the City of the Company User" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / company_permission_template_id / descriptionPrevious value: -"The ID of the Company Permission Template for the Company User. Requests including this parameter will be rejected unless the requesting user has Directory Admin permissions"New value: +"JSON request body field — the ID of the Company Permission Template for the Company User. Requests including this parameter will be rejected unless the requesting user has Directory Admin permissions" - changed
Input schema / properties / country_code / descriptionPrevious value: -"The Country Code of the Company User (ISO-3166 Alpha-2 format)"New value: +"JSON request body field — the Country Code of the Company User (ISO-3166 Alpha-2 format)" - changed
Input schema / properties / default_permission_template_id / descriptionPrevious value: -"The ID of the default Permission Template for the Company User. Requests including this parameter will be rejected unless the requesting user has Directory Admin permissions"New value: +"JSON request body field — the ID of the default Permission Template for the Company User. Requests including this parameter will be rejected unless the requesting user has Directory Admin permissions" - changed
Input schema / properties / email_address / descriptionPrevious value: -"The Email Address of the Company User. Update requests including this parameter will be rejected unless the requesting user has Directory Admin permissions"New value: +"JSON request body field — the Email Address of the Company User. Update requests including this parameter will be rejected unless the requesting user has Directory Admin permissions" - changed
Input schema / properties / email_signature / descriptionPrevious value: -"The Email Signature of the Company User"New value: +"JSON request body field — the Email Signature of the Company User" - changed
Input schema / properties / employee_id / descriptionPrevious value: -"The ID of the Employee of the Company User when `user[is_employee]` is set to `true`"New value: +"JSON request body field — the ID of the Employee of the Company User when `user[is_employee]` is set to `true`" - changed
Input schema / properties / fax_number / descriptionPrevious value: -"The Fax Number of the Company User"New value: +"JSON request body field — the Fax Number of the Company User" - changed
Input schema / properties / first_name / descriptionPrevious value: -"The First Name of the Company User"New value: +"JSON request body field — the First Name of the Company User" - changed
Input schema / properties / initials / descriptionPrevious value: -"The Initials of the Company User"New value: +"JSON request body field — the Initials of the Company User" - changed
Input schema / properties / is_active / descriptionPrevious value: -"The Active status of the Company User"New value: +"JSON request body field — the Active status of the Company User" - changed
Input schema / properties / is_employee / descriptionPrevious value: -"The Employee status of the Company User"New value: +"JSON request body field — the Employee status of the Company User" - changed
Input schema / properties / job_title / descriptionPrevious value: -"The Job Title of the Company User"New value: +"JSON request body field — the Job Title of the Company User" - changed
Input schema / properties / last_name / descriptionPrevious value: -"The Last Name of the Company User"New value: +"JSON request body field — the Last Name of the Company User" - changed
Input schema / properties / mobile_phone / descriptionPrevious value: -"The Mobile Phone of the Company User"New value: +"JSON request body field — the Mobile Phone of the Company User" - changed
Input schema / properties / notes / descriptionPrevious value: -"The Notes (notes, keywords, tags) of the Company User"New value: +"JSON request body field — the Notes (notes, keywords, tags) of the Company User" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"The Origin Data of the Company User"New value: +"JSON request body field — the Origin Data of the Company User" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"The Origin ID of the Company User"New value: +"JSON request body field — the Origin ID of the Company User" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / state_code / descriptionPrevious value: -"The State Code of the Company User (ISO-3166 Alpha-2 format)"New value: +"JSON request body field — the State Code of the Company User (ISO-3166 Alpha-2 format)" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"The ID of the Vendor of the Company User"New value: +"JSON request body field — the ID of the Vendor of the Company User" - changed
Input schema / properties / work_classification_id / descriptionPrevious value: -"The ID of the Work Classification for the Company User"New value: +"JSON request body field — the ID of the Work Classification for the Company User" - changed
Input schema / properties / zip / descriptionPrevious value: -"The Zip code of the Company User"New value: +"JSON request body field — the Zip code of the Company User"
- Changed
create_company_vendor4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / vendor / descriptionPrevious value: -"vendor"New value: +"JSON request body field — the vendor for this Directory operation" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view of the resource to return (which attributes should be present in the response). The default view is extended."New value: +"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). The default view is extended."
- Changed
create_company_vendor_business_register4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Company Vendor"New value: +"URL path parameter — iD of the Company Vendor" - changed
Input schema / properties / identifier / descriptionPrevious value: -"Entity ID. This field ignores spaces and dashes."New value: +"JSON request body field — entity ID. This field ignores spaces and dashes." - changed
Input schema / properties / type / descriptionPrevious value: -"Entity Type"New value: +"JSON request body field — entity Type"
- Changed
create_company_vendor_insurance18 fields changed- changed
Input schema / properties / additional_insured / descriptionPrevious value: -"Additional Individuals and/or Companies Insured"New value: +"JSON request body field — additional Individuals and/or Companies Insured" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / division_template / descriptionPrevious value: -"Division Template"New value: +"JSON request body field — the division template for this Directory operation" - changed
Input schema / properties / effective_date / descriptionPrevious value: -"Effective date"New value: +"JSON request body field — the effective date in YYYY-MM-DD format" - changed
Input schema / properties / enable_expired_insurance_notifications / descriptionPrevious value: -"Enable/Disable expired insurance notifications"New value: +"JSON request body field — enable/Disable expired insurance notifications" - changed
Input schema / properties / exempt / descriptionPrevious value: -"Exempt status"New value: +"JSON request body field — exempt status" - changed
Input schema / properties / expiration_date / descriptionPrevious value: -"Expiration date"New value: +"JSON request body field — the expiration date in YYYY-MM-DD format" - changed
Input schema / properties / info_received / descriptionPrevious value: -"Information received (or not)"New value: +"JSON request body field — information received (or not)" - changed
Input schema / properties / insurance_sets / descriptionPrevious value: -"Insurance Sets"New value: +"JSON request body field — the insurance sets for this Directory operation" - changed
Input schema / properties / insurance_type / descriptionPrevious value: -"Insurance type"New value: +"JSON request body field — the insurance type for this Directory operation" - changed
Input schema / properties / limit / descriptionPrevious value: -"Limit"New value: +"JSON request body field — the limit for this Directory operation" - changed
Input schema / properties / name / descriptionPrevious value: -"Provider name"New value: +"JSON request body field — provider name" - changed
Input schema / properties / notes / descriptionPrevious value: -"Notes"New value: +"JSON request body field — the notes for this Directory operation" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"Origin data"New value: +"JSON request body field — the origin data for this Directory operation" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin" - changed
Input schema / properties / policy_number / descriptionPrevious value: -"Policy number"New value: +"JSON request body field — the policy number for this Directory operation" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Directory operation" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
- Added
create_company_webhooks_hook - Removed
create_company_webhooks_hook_v2_0 - Added
create_company_webhooks_triggers - Removed
create_company_webhooks_triggers_v2_0 - Added
create_compliance_document - Removed
create_compliance_document_v2_0 - Changed
create_configurable_field_sets12 fields changed- changed
Input schema / properties / action_plan_type_id / descriptionPrevious value: -"Action Plan Type unique identifier"New value: +"JSON request body field — action Plan Type unique identifier" - changed
Input schema / properties / category / descriptionPrevious value: -"Required and only needed when associating projects for an Observations Configurable Field Set.(0 = quality, 1 = safety, 2 = commissioning, 3 = warranty, 4 = work to complete)"New value: +"JSON request body field — required and only needed when associating projects for an Observations Configurable Field Set.(0 = quality, 1 = safety, 2 = commissioning, 3 = warranty, 4 = work to complete)" - changed
Input schema / properties / class_name / descriptionPrevious value: -"Class Name of the object the Configurable Field Set is applied to"New value: +"JSON request body field — class Name of the object the Configurable Field Set is applied to" - changed
Input schema / properties / company_configurable_field_set_default_column_name / descriptionPrevious value: -"the column name on CompanyConfigurableFieldSetDefault to set the Configurable Field Set as default to. Only needed if company_default is true."New value: +"JSON request body field — the column name on CompanyConfigurableFieldSetDefault to set the Configurable Field Set as default to. Only needed if company_default is true." - changed
Input schema / properties / company_default / descriptionPrevious value: -"If the Configurable Field Set is the company default for new projects"New value: +"JSON request body field — if the Configurable Field Set is the company default for new projects" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / fields / descriptionPrevious value: -"All fields that make up the form of the class name."New value: +"JSON request body field — all fields that make up the form of the class name." - changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Generic tool unique identifier"New value: +"JSON request body field — generic tool unique identifier" - changed
Input schema / properties / include_lov_entries / descriptionPrevious value: -"whether or not to include LOV entries in the response\n(defaults to true)"New value: +"Query string parameter — whether or not to include LOV entries in the response\n(defaults to true)" - changed
Input schema / properties / inspection_type_id / descriptionPrevious value: -"Inspection type unique identifier"New value: +"JSON request body field — inspection type unique identifier" - changed
Input schema / properties / name / descriptionPrevious value: -"Name"New value: +"JSON request body field — the name for this Custom - Configurable Tools operation" - changed
Input schema / properties / project_ids / descriptionPrevious value: -"project_ids"New value: +"JSON request body field — array of project identifiers"
- Changed
create_contract_payment4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Contract payment attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as..."New value: +"JSON request body field — contract payment attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as..." - changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract" - changed
Input schema / properties / contract_payment / descriptionPrevious value: -"Contract Payment object"New value: +"JSON request body field — contract Payment object" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_contributing_behavior3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Contributing Behavior is available for use"New value: +"JSON request body field — flag that denotes if the Contributing Behavior is available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Contributing Behavior"New value: +"JSON request body field — the Name of the Contributing Behavior"
- Changed
create_contributing_condition3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Contributing Condition is available for use"New value: +"JSON request body field — flag that denotes if the Contributing Condition is available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Contributing Condition"New value: +"JSON request body field — the Name of the Contributing Condition"
- Changed
create_coordination_issue2 fields changed- changed
Input schema / properties / coordination_issue / descriptionPrevious value: -"Coordination Issue"New value: +"JSON request body field — the coordination issue for this Coordination Issues operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_coordination_issue_assignment3 fields changed- changed
Input schema / properties / coordination_issue_assignment / descriptionPrevious value: -"coordination_issue_assignment"New value: +"JSON request body field — coordination_issue_assignment" - changed
Input schema / properties / coordination_issue_id / descriptionPrevious value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_cost_code3 fields changed- changed
Input schema / properties / cost_code / descriptionPrevious value: -"Cost Code object"New value: +"JSON request body field — cost Code object" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / sub_job_id / descriptionPrevious value: -"Unique identifier for the Sub Job"New value: +"JSON request body field — unique identifier for the Sub Job"
- Added
create_cost_item - Removed
create_cost_item_v2_0 - Added
create_csv_export_for_commitment_change_order_rows - Removed
create_csv_export_for_commitment_change_order_rows_v2_0 - Added
create_csv_export_for_prime_change_order_rows - Removed
create_csv_export_for_prime_change_order_rows_v2_0 - Changed
create_custom_field10 fields changed- changed
Input schema / properties / can_filter / descriptionPrevious value: -"If true, allows this field to be used as a filter."New value: +"JSON request body field — if true, allows this field to be used as a filter." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / description / descriptionPrevious value: -"A description to help Admin users understand the field’s purpose."New value: +"JSON request body field — a description to help Admin users understand the field’s purpose." - changed
Input schema / properties / integration_only / descriptionPrevious value: -"If true, only integrations can update this field."New value: +"JSON request body field — if true, only integrations can update this field." - changed
Input schema / properties / name / descriptionPrevious value: -"The name of the Custom Field that appears in the UI."New value: +"JSON request body field — the name of the Custom Field that appears in the UI." - changed
Input schema / properties / on_people / descriptionPrevious value: -"If true, the field is available on People."New value: +"JSON request body field — if true, the field is available on People." - changed
Input schema / properties / on_projects / descriptionPrevious value: -"If true, the field is available on Projects."New value: +"JSON request body field — if true, the field is available on Projects." - changed
Input schema / properties / sort_by / descriptionPrevious value: -"Only applicable for `select` or `multi-select` fields. Controls sorting of dropdown values. `alpha` sorts alphabetically, while `listed` maintains the provided order.\n"New value: +"JSON request body field — only applicable for `select` or `multi-select` fields. Controls sorting of dropdown values. `alpha` sorts alphabetically, while `listed` maintains the provided order.\n" - changed
Input schema / properties / type / descriptionPrevious value: -"The type of Custom Field. Determines the kind of data it will store. The type cannot be changed once created.\n"New value: +"JSON request body field — the type of Custom Field. Determines the kind of data it will store. The type cannot be changed once created.\n" - changed
Input schema / properties / values / descriptionPrevious value: -"Only applicable for `select` or `multi-select` fields. List of values that will be options in the field's dropdown.\n"New value: +"JSON request body field — only applicable for `select` or `multi-select` fields. List of values that will be options in the field's dropdown.\n"
- Changed
create_daily_construction_report_log4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Daily Construction Report Log Attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `atta..."New value: +"JSON request body field — daily Construction Report Log Attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `atta..." - changed
Input schema / properties / daily_construction_report_log / descriptionPrevious value: -"daily_construction_report_log"New value: +"JSON request body field — daily_construction_report_log" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
create_delay_log4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Attachments pertaining the Log.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` ..."New value: +"JSON request body field — attachments pertaining the Log.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` ..." - changed
Input schema / properties / delay_log / descriptionPrevious value: -"delay_log"New value: +"JSON request body field — the delay log for this Daily Log operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
create_delivery_log3 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Delivery Log Attachments are not viewable or used on web.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data toge..."New value: +"JSON request body field — delivery Log Attachments are not viewable or used on web.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data toge..." - changed
Input schema / properties / delivery_log / descriptionPrevious value: -"delivery_log"New value: +"JSON request body field — the delivery log for this Daily Log operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_department2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company" - changed
Input schema / properties / department / descriptionPrevious value: -"department"New value: +"JSON request body field — the department for this Directory operation"
- Changed
create_direct_cost_item5 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Direct Cost Item attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as..."New value: +"JSON request body field — direct Cost Item attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as..." - added
Input schema / properties / direct_costAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — direct Cost Item object", + "type": "object" +} - removed
Input schema / properties / itemRemoved value: -{ - "additionalProperties": {}, - "description": "Direct Cost Item object", - "type": "object" -} - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / requiredPrevious value: -[ - "project_id", - "item" -]New value: +[ + "project_id", + "direct_cost" +]
- Removed
create_direct_cost_item_v1_1 - Changed
create_direct_cost_line_item14 fields changed- changed
Input schema / properties / amount / descriptionPrevious value: -"Amount"New value: +"JSON request body field — the amount for this Direct Costs operation" - changed
Input schema / properties / cost_code_id / descriptionPrevious value: -"Cost Code ID"New value: +"JSON request body field — unique identifier of the cost code" - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Direct Costs operation" - changed
Input schema / properties / direct_cost_id / descriptionPrevious value: -"Direct Cost ID"New value: +"JSON request body field — unique identifier of the direct cost" - changed
Input schema / properties / extended_type / descriptionPrevious value: -"Calculated amount from quantity and unit cost or manually entered amount"New value: +"JSON request body field — calculated amount from quantity and unit cost or manually entered amount" - changed
Input schema / properties / line_item_type_id / descriptionPrevious value: -"Line Item Type ID"New value: +"JSON request body field — unique identifier of the line item type" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"Origin Data"New value: +"JSON request body field — the origin data for this Direct Costs operation" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity / descriptionPrevious value: -"Quantity of described item"New value: +"JSON request body field — quantity of described item" - changed
Input schema / properties / tax_code_id / descriptionPrevious value: -"Tax Code ID"New value: +"JSON request body field — unique identifier of the tax code" - changed
Input schema / properties / unit_cost / descriptionPrevious value: -"Unit cost of described item"New value: +"JSON request body field — unit cost of described item" - changed
Input schema / properties / uom / descriptionPrevious value: -"Unit of measure of the described item"New value: +"JSON request body field — unit of measure of the described item" - changed
Input schema / properties / wbs_code_id / descriptionPrevious value: -"WBS Code ID"New value: +"JSON request body field — unique identifier of the wbs code"
- Changed
create_document_custom_tag3 fields changed- changed
Input schema / properties / document_custom_tag / descriptionPrevious value: -"Document Custom Tag object"New value: +"JSON request body field — document Custom Tag object" - changed
Input schema / properties / document_id / descriptionPrevious value: -"ID of the Folder or File to add the Custom Tag to"New value: +"JSON request body field — iD of the Folder or File to add the Custom Tag to" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
create_drawing - Changed
create_drawing_area3 fields changed- changed
Input schema / properties / description / descriptionPrevious value: -"Drawing Area description"New value: +"JSON request body field — drawing Area description" - changed
Input schema / properties / name / descriptionPrevious value: -"Drawing Area name"New value: +"JSON request body field — drawing Area name" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
create_drawing_area_v1_1 - Changed
create_drawing_set3 fields changed- changed
Input schema / properties / date / descriptionPrevious value: -"Drawing Set date"New value: +"JSON request body field — drawing Set date" - changed
Input schema / properties / name / descriptionPrevious value: -"Drawing Set name"New value: +"JSON request body field — drawing Set name" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_drawing_upload12 fields changed- changed
Input schema / properties / Idempotency-Token / descriptionPrevious value: -"Unique idempotent token"New value: +"JSON request body field — unique idempotent token" - changed
Input schema / properties / drawing_area_id / descriptionPrevious value: -"Drawing Area ID\n*Required only if Drawing Area is turned on"New value: +"JSON request body field — drawing Area ID\n*Required only if Drawing Area is turned on" - removed
Input schema / properties / drawing_dateRemoved value: -{ - "description": "Drawing date", - "type": "string" -} - added
Input schema / properties / drawing_log_importsAdded value: +{ + "description": "JSON request body field — array of Drawing Log Import parameters.\nThere should be one Drawing Log Import per file/Upload in the Drawing Upload.", + "items": {}, + "type": "array" +} - changed
Input schema / properties / drawing_number_contains_revision / descriptionPrevious value: -"Drawing number contains revision status"New value: +"JSON request body field — drawing number contains revision status" - changed
Input schema / properties / drawing_set_id / descriptionPrevious value: -"Drawing Set ID"New value: +"JSON request body field — unique identifier of the drawing set" - removed
Input schema / properties / filesRemoved value: -{ - "description": "One or more files in PDF format to include in the upload.\n*To upload drawings you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data togeth...", - "items": {}, - "type": "array" -} - changed
Input schema / properties / get_info_from_filename / descriptionPrevious value: -"Get info from filename"New value: +"JSON request body field — get drawing title, number from filename" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - removed
Input schema / properties / received_dateRemoved value: -{ - "description": "Received date", - "type": "string" -} - removed
Input schema / properties / upload_uuidsRemoved value: -{ - "description": "Array of uploaded files UUIDs.\n*Required only if files is empty", - "items": {}, - "type": "array" -} - changed
Input schema / requiredPrevious value: -[ - "project_id", - "drawing_set_id" -]New value: +[ + "project_id", + "drawing_set_id", + "drawing_log_imports" +]
- Removed
create_drawing_upload_v1_1 - Removed
create_drawing_v1_1 - Changed
create_dumpster_log3 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Dumpster Log Attachments are not viewable or used on web\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data toget..."New value: +"JSON request body field — dumpster Log Attachments are not viewable or used on web\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data toget..." - changed
Input schema / properties / dumpster_log / descriptionPrevious value: -"dumpster_log"New value: +"JSON request body field — the dumpster log for this Daily Log operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_early_pay_program7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / dateConfiguration / descriptionPrevious value: -"Date configuration for the program"New value: +"JSON request body field — date configuration for the program" - changed
Input schema / properties / messageToVendor / descriptionPrevious value: -"Custom message to vendor"New value: +"JSON request body field — custom message to vendor" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the early pay program"New value: +"JSON request body field — name of the early pay program" - changed
Input schema / properties / preferredRate / descriptionPrevious value: -"Preferred rate in basis points (1% = 100)"New value: +"JSON request body field — preferred rate in basis points (1% = 100)" - changed
Input schema / properties / standardRate / descriptionPrevious value: -"Standard rate in basis points (1% = 100)"New value: +"JSON request body field — standard rate in basis points (1% = 100)" - changed
Input schema / properties / type / descriptionPrevious value: -"Type of the early pay program"New value: +"JSON request body field — type of the early pay program"
- Changed
create_email5 fields changed- changed
Input schema / properties / communication_id / descriptionPrevious value: -"Communication ID"New value: +"URL path parameter — unique identifier of the communication" - changed
Input schema / properties / email / descriptionPrevious value: -"email"New value: +"JSON request body field — the email for this Emails operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / topic_id / descriptionPrevious value: -"Topic ID"New value: +"Query string parameter — unique identifier of the topic" - changed
Input schema / properties / topic_type / descriptionPrevious value: -"The type of the topic to be associated with the communication"New value: +"Query string parameter — the type of the topic to be associated with the communication"
- Changed
create_email_communication5 fields changed- changed
Input schema / properties / communication / descriptionPrevious value: -"communication"New value: +"JSON request body field — the communication for this Emails operation" - changed
Input schema / properties / email / descriptionPrevious value: -"email"New value: +"JSON request body field — the email for this Emails operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / topic_id / descriptionPrevious value: -"Topic ID"New value: +"Query string parameter — unique identifier of the topic" - changed
Input schema / properties / topic_type / descriptionPrevious value: -"The type of the topic to be associated with the communication"New value: +"Query string parameter — the type of the topic to be associated with the communication"
- Changed
create_environmental11 fields changed- changed
Input schema / properties / affected_company_id / descriptionPrevious value: -"The ID of the Affected Company"New value: +"JSON request body field — the ID of the Affected Company" - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"Description of event in Rich Text format"New value: +"JSON request body field — description of event in Rich Text format" - changed
Input schema / properties / environmental_type_id / descriptionPrevious value: -"The ID of the Environmental Type"New value: +"JSON request body field — the ID of the Environmental Type" - changed
Input schema / properties / estimated_cost_impact / descriptionPrevious value: -"Estimated cost impact of the record"New value: +"JSON request body field — estimated cost impact of the record" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"The ID of the Incident"New value: +"JSON request body field — the ID of the Incident" - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"The ID of the Managed Equipment"New value: +"JSON request body field — the ID of the Managed Equipment" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity_unit_of_measure / descriptionPrevious value: -"Unit of measure for the \"quantity\" field (19 possible values)"New value: +"JSON request body field — unit of measure for the \"quantity\" field (19 possible values)" - changed
Input schema / properties / quantity_value / descriptionPrevious value: -"Numeric portion of the \"quantity\" field"New value: +"JSON request body field — numeric portion of the \"quantity\" field" - changed
Input schema / properties / work_activity_id / descriptionPrevious value: -"The ID of the Work Activity"New value: +"JSON request body field — the ID of the Work Activity"
- Changed
create_equipment15 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / company_visible / descriptionPrevious value: -"Company visible"New value: +"JSON request body field — the company visible for this Field Productivity operation" - changed
Input schema / properties / current_project_id / descriptionPrevious value: -"ID of the project the equipment is currently dispatched to"New value: +"JSON request body field — iD of the project the equipment is currently dispatched to" - changed
Input schema / properties / description / descriptionPrevious value: -"description of the equipment"New value: +"JSON request body field — description of the equipment" - changed
Input schema / properties / identification_number / descriptionPrevious value: -"Identification number of the equipment"New value: +"JSON request body field — identification number of the equipment" - changed
Input schema / properties / managed_equipment_category_id / descriptionPrevious value: -"ID of the equipment category"New value: +"JSON request body field — iD of the equipment category" - changed
Input schema / properties / managed_equipment_make_id / descriptionPrevious value: -"ID of the equipment make"New value: +"JSON request body field — iD of the equipment make" - changed
Input schema / properties / managed_equipment_model_id / descriptionPrevious value: -"ID of the equipment model"New value: +"JSON request body field — iD of the equipment model" - changed
Input schema / properties / managed_equipment_type_id / descriptionPrevious value: -"ID of the equipment type"New value: +"JSON request body field — iD of the equipment type" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the equipment"New value: +"JSON request body field — name of the equipment" - changed
Input schema / properties / ownership / descriptionPrevious value: -"The type of ownership"New value: +"JSON request body field — the type of ownership" - changed
Input schema / properties / serial_number / descriptionPrevious value: -"Serial number of the equipment"New value: +"JSON request body field — serial number of the equipment" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Field Productivity operation" - changed
Input schema / properties / upload_uuids / descriptionPrevious value: -"Array of upload uuids"New value: +"JSON request body field — array of upload uuids" - changed
Input schema / properties / year / descriptionPrevious value: -"Year the equipment was manufactured in"New value: +"JSON request body field — year the equipment was manufactured in"
- Added
create_equipment_attachment_company - Removed
create_equipment_attachment_company_v2_0 - Added
create_equipment_attachment_project - Removed
create_equipment_attachment_project_v2_0 - Changed
create_equipment_category3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / is_active / descriptionPrevious value: -"If the category is active"New value: +"JSON request body field — if the category is active" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the category"New value: +"JSON request body field — name of the category"
- Added
create_equipment_category_company - Removed
create_equipment_category_company_v2_0 - Added
create_equipment_category_project - Removed
create_equipment_category_project_v2_0 - Added
create_equipment_company - Removed
create_equipment_company_v2_0 - Removed
create_equipment_company_v2_1 - Changed
create_equipment_log_company9 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / induction_checklist_list_id / descriptionPrevious value: -"Id of the inspection list the equipment uses"New value: +"JSON request body field — id of the inspection list the equipment uses" - changed
Input schema / properties / induction_number / descriptionPrevious value: -"The number used for equipment induction"New value: +"JSON request body field — the number used for equipment induction" - changed
Input schema / properties / induction_status / descriptionPrevious value: -"Indicates if the equipemnt has been successfully inspected and allowed to perform work"New value: +"JSON request body field — indicates if the equipemnt has been successfully inspected and allowed to perform work" - changed
Input schema / properties / inspection_date / descriptionPrevious value: -"The date the equipment was inspected"New value: +"JSON request body field — the date the equipment was inspected" - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"Equipment Id the log is associated with"New value: +"JSON request body field — equipment Id the log is associated with" - changed
Input schema / properties / offsite / descriptionPrevious value: -"The Date equipment left the site"New value: +"JSON request body field — the Date equipment left the site" - changed
Input schema / properties / onsite / descriptionPrevious value: -"The Date equipment arrived on site"New value: +"JSON request body field — the Date equipment arrived on site" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project the equipment was logged for"New value: +"JSON request body field — iD of the project the equipment was logged for"
- Changed
create_equipment_log_project4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Equipment Log Attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]` as fi..."New value: +"JSON request body field — equipment Log Attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]` as fi..." - changed
Input schema / properties / equipment_log / descriptionPrevious value: -"equipment_log"New value: +"JSON request body field — the equipment log for this Daily Log operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
create_equipment_maintenance_log5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / last_service_date / descriptionPrevious value: -"The Date the equipment was last services"New value: +"JSON request body field — the Date the equipment was last services" - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"Equipment Id the maintenance log is associated with"New value: +"JSON request body field — equipment Id the maintenance log is associated with" - changed
Input schema / properties / next_service_date / descriptionPrevious value: -"Next service date for the equipment"New value: +"JSON request body field — next service date for the equipment" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"The specified array of upload ids is saved as Managed Equipment Maintenance Logs Attachments."New value: +"JSON request body field — the specified array of upload ids is saved as Managed Equipment Maintenance Logs Attachments."
- Added
create_equipment_make_company - Removed
create_equipment_make_company_v2_0 - Added
create_equipment_make_project - Removed
create_equipment_make_project_v2_0 - Added
create_equipment_model_company - Removed
create_equipment_model_company_v2_0 - Added
create_equipment_model_project - Removed
create_equipment_model_project_v2_0 - Added
create_equipment_project - Removed
create_equipment_project_v2_0 - Removed
create_equipment_project_v2_1 - Added
create_equipment_status_company - Removed
create_equipment_status_company_v2_0 - Added
create_equipment_type_company - Removed
create_equipment_type_company_v2_0 - Added
create_equipment_type_project - Removed
create_equipment_type_project_v2_0 - Changed
create_form7 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Form's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — form's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / description / descriptionPrevious value: -"The Description of the Form"New value: +"JSON request body field — the Description of the Form" - changed
Input schema / properties / fillable_pdf / descriptionPrevious value: -"Form's Fillable PDF.\nTo upload a fillable PDF you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `fillable_pdf` as files."New value: +"JSON request body field — form's Fillable PDF.\nTo upload a fillable PDF you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `fillable_pdf` as files." - changed
Input schema / properties / form_template_id / descriptionPrevious value: -"ID of the Form Template that the Form is made from"New value: +"JSON request body field — iD of the Form Template that the Form is made from" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Form"New value: +"JSON request body field — the Name of the Form" - changed
Input schema / properties / private / descriptionPrevious value: -"The Private status of the Form"New value: +"JSON request body field — the Private status of the Form" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_generic_tool6 fields changed- changed
Input schema / properties / abbreviation / descriptionPrevious value: -"An abbreviation for the generic tool."New value: +"JSON request body field — an abbreviation for the generic tool." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / new_project_default / descriptionPrevious value: -"If this property is set to true, the generic tool will be added to new projects by default."New value: +"JSON request body field — if this property is set to true, the generic tool will be added to new projects by default." - changed
Input schema / properties / private_by_default / descriptionPrevious value: -"If this property is set to true, any items that are created for the tool are private by default."New value: +"JSON request body field — if this property is set to true, any items that are created for the tool are private by default." - changed
Input schema / properties / send_overdue_notifications / descriptionPrevious value: -"If this property is set to true, notifications will be sent to assignees when an item is overdue."New value: +"JSON request body field — if this property is set to true, notifications will be sent to assignees when an item is overdue." - changed
Input schema / properties / title / descriptionPrevious value: -"The title of the generic tool."New value: +"JSON request body field — the title of the generic tool."
- Changed
create_generic_tool_item29 fields changed- changed
Input schema / properties / assignee_ids / descriptionPrevious value: -"An array of assignee identifiers for the generic tool item."New value: +"JSON request body field — an array of assignee identifiers for the generic tool item." - changed
Input schema / properties / attachments / descriptionPrevious value: -"Specifies an array of generic tool item attachments.\nTo upload attachments you must upload the entire payload as a `multipart/form-data` content-type and\nspecify each parameter as form-data togethe..."New value: +"JSON request body field — specifies an array of generic tool item attachments.\nTo upload attachments you must upload the entire payload as a `multipart/form-data` content-type and\nspecify each parameter as form-data togethe..." - changed
Input schema / properties / cost_code_id / descriptionPrevious value: -"The cost code identifier for the generic tool item."New value: +"JSON request body field — the cost code identifier for the generic tool item." - changed
Input schema / properties / cost_impact / descriptionPrevious value: -"The cost impact of the generic tool item."New value: +"JSON request body field — the cost impact of the generic tool item." - changed
Input schema / properties / cost_impact_value / descriptionPrevious value: -"Specifies a value for the cost impact of the generic tool item."New value: +"JSON request body field — specifies a value for the cost impact of the generic tool item." - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"The description of the generic tool item."New value: +"JSON request body field — the description of the generic tool item." - changed
Input schema / properties / distribution_member_ids / descriptionPrevious value: -"An array of distribution member identifiers for the generic tool item."New value: +"JSON request body field — an array of distribution member identifiers for the generic tool item." - changed
Input schema / properties / document_management_document_revision_ids / descriptionPrevious value: -"PDM document to attach to the response"New value: +"JSON request body field — pDM document to attach to the response" - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / due_date / descriptionPrevious value: -"The due date for the generic tool item."New value: +"JSON request body field — the due date for the generic tool item." - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / location_id / descriptionPrevious value: -"The location identifier for the generic tool item."New value: +"JSON request body field — the location identifier for the generic tool item." - changed
Input schema / properties / position / descriptionPrevious value: -"The position/number of the generic tool item."New value: +"JSON request body field — the position/number of the generic tool item." - changed
Input schema / properties / private / descriptionPrevious value: -"If this property is set to true, the generic tool item is private. If this property is set to false, the generic tool item is not private."New value: +"JSON request body field — if this property is set to true, the generic tool item is private. If this property is set to false, the generic tool item is not private." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / received_from_id / descriptionPrevious value: -"The unique identifier for the Received From entity."New value: +"JSON request body field — the unique identifier for the Received From entity." - changed
Input schema / properties / schedule_impact / descriptionPrevious value: -"The schedule impact status for the generic tool item."New value: +"JSON request body field — the schedule impact status for the generic tool item." - changed
Input schema / properties / schedule_impact_value / descriptionPrevious value: -"Specifies a value for the schedue impact of the generic tool item."New value: +"JSON request body field — specifies a value for the schedue impact of the generic tool item." - changed
Input schema / properties / skip_emails / descriptionPrevious value: -"If true creating and updating the item will not send emails to the users on the item."New value: +"JSON request body field — if true creating and updating the item will not send emails to the users on the item." - changed
Input schema / properties / specification_section_id / descriptionPrevious value: -"The specification section identifier for the generic tool item."New value: +"JSON request body field — the specification section identifier for the generic tool item." - changed
Input schema / properties / status / descriptionPrevious value: -"The status of the generic tool item."New value: +"JSON request body field — the status of the generic tool item." - changed
Input schema / properties / title / descriptionPrevious value: -"The title of the generic tool item."New value: +"JSON request body field — the title of the generic tool item." - changed
Input schema / properties / trade_id / descriptionPrevious value: -"The trade identifier for the generic tool item."New value: +"JSON request body field — the trade identifier for the generic tool item." - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response" - changed
Input schema / properties / view / descriptionPrevious value: -"If supplied customize the response format"New value: +"Query string parameter — if supplied customize the response format"
- Changed
create_generic_tool_item_response4 fields changed- changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Unique identifier for the generic tool."New value: +"URL path parameter — unique identifier for the generic tool." - changed
Input schema / properties / generic_tool_item_id / descriptionPrevious value: -"Unique identifier for the generic tool item."New value: +"URL path parameter — unique identifier for the generic tool item." - changed
Input schema / properties / generic_tool_item_response / descriptionPrevious value: -"generic_tool_item_response"New value: +"JSON request body field — generic_tool_item_response" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_generic_tool_status4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool" - changed
Input schema / properties / status / descriptionPrevious value: -"The status of the generic tool status."New value: +"JSON request body field — the status of the generic tool status." - changed
Input schema / properties / status_name / descriptionPrevious value: -"The name of the generic tool status."New value: +"JSON request body field — the name of the generic tool status."
- Changed
create_gps_position7 fields changed- changed
Input schema / properties / altitude / descriptionPrevious value: -"The altitude, measured in meters."New value: +"JSON request body field — the altitude, measured in meters." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / horizontal_accuracy / descriptionPrevious value: -"The horizontal radius of uncertainty for the location, measured in meters."New value: +"JSON request body field — the horizontal radius of uncertainty for the location, measured in meters." - changed
Input schema / properties / latitude / descriptionPrevious value: -"The latitude in degrees."New value: +"JSON request body field — the latitude in degrees." - changed
Input schema / properties / longitude / descriptionPrevious value: -"The longitude in degrees."New value: +"JSON request body field — the longitude in degrees." - changed
Input schema / properties / timestamp / descriptionPrevious value: -"The time at which this location was determined."New value: +"JSON request body field — the time at which this location was determined." - changed
Input schema / properties / vertical_accuracy / descriptionPrevious value: -"The vertical radius of uncertainty for the location, measured in meters."New value: +"JSON request body field — the vertical radius of uncertainty for the location, measured in meters."
- Changed
create_group_and_move_markups8 fields changed- changed
Input schema / properties / action / descriptionPrevious value: -"action"New value: +"JSON request body field — the action for this Document Markup operation" - changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / escalate_to_pin / descriptionPrevious value: -"escalate_to_pin"New value: +"JSON request body field — the escalate to pin for this Document Markup operation" - changed
Input schema / properties / markup_ids / descriptionPrevious value: -"markup_ids"New value: +"JSON request body field — array of markup identifiers" - changed
Input schema / properties / pin_id / descriptionPrevious value: -"pin_id"New value: +"JSON request body field — unique identifier of the pin" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / source_group_id / descriptionPrevious value: -"source_group_id"New value: +"JSON request body field — unique identifier of the source group" - changed
Input schema / properties / viewer_doc_id / descriptionPrevious value: -"viewer_doc_id"New value: +"URL path parameter — unique identifier of the viewer doc"
- Changed
create_harm_source3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Harm Source is available for use"New value: +"JSON request body field — flag that denotes if the Harm Source is available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Harm Source"New value: +"JSON request body field — the Name of the Harm Source"
- Changed
create_hazard3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Hazard is available for use"New value: +"JSON request body field — flag that denotes if the Hazard is available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Hazard"New value: +"JSON request body field — the Name of the Hazard"
- Changed
create_image4 fields changed- changed
Input schema / properties / image / descriptionPrevious value: -"At least one attribute is required even when an 'upload_uuid' key is provided. If an 'upload_uuid' is not provided above, then the 'data' key must be provided"New value: +"JSON request body field — at least one attribute is required even when an 'upload_uuid' key is provided. If an 'upload_uuid' is not provided above, then the 'data' key must be provided" - changed
Input schema / properties / image_name / descriptionPrevious value: -"The name of the image file to be uploaded. Required when using an upload_uuid to upload the image."New value: +"JSON request body field — the name of the image file to be uploaded. Required when using an upload_uuid to upload the image." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / upload_uuid / descriptionPrevious value: -"UUID referencing a previously completed Upload. This is the recommended approach for image uploads. See Company Uploads or Project Uploads for instructions on how use uploads. You should not use bo..."New value: +"JSON request body field — uUID referencing a previously completed Upload. This is the recommended approach for image uploads. See Company Uploads or Project Uploads for instructions on how use uploads. You should not use bo..."
- Changed
create_image_category4 fields changed- changed
Input schema / properties / album_cover_id / descriptionPrevious value: -"ID of an Image that is the cover Image of the Image Category."New value: +"JSON request body field — iD of an Image that is the cover Image of the Image Category." - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Image Category"New value: +"JSON request body field — the Name of the Image Category" - changed
Input schema / properties / private / descriptionPrevious value: -"The Private status of the Image Category"New value: +"JSON request body field — the Private status of the Image Category" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
create_incident28 fields changed- changed
Input schema / properties / assignee_ids / descriptionPrevious value: -"An array of Login Information IDs to assign to the Incident. Assignees gain visibility into the Incident and its related records. Not updatable if the Incident has a workflows instance."New value: +"JSON request body field — an array of Login Information IDs to assign to the Incident. Assignees gain visibility into the Incident and its related records. Not updatable if the Incident has a workflows instance." - changed
Input schema / properties / contributing_behavior_id / descriptionPrevious value: -"The ID of a Contributing Behavior"New value: +"JSON request body field — the ID of a Contributing Behavior" - changed
Input schema / properties / contributing_condition_id / descriptionPrevious value: -"The ID of a Contributing Condition"New value: +"JSON request body field — the ID of a Contributing Condition" - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / custom_status_id / descriptionPrevious value: -"The ID of the Custom Status. Mutually exclusive with the status field — setting one sets the other. Not updatable if the Incident has a workflows instance."New value: +"JSON request body field — the ID of the Custom Status. Mutually exclusive with the status field — setting one sets the other. Not updatable if the Incident has a workflows instance." - changed
Input schema / properties / description / descriptionPrevious value: -"Description of the Incident"New value: +"JSON request body field — description of the Incident" - changed
Input schema / properties / distribution_member_ids / descriptionPrevious value: -"An Array of the IDs of the Distribution Members (Not updatable if an incident has a workflows instance)"New value: +"JSON request body field — an Array of the IDs of the Distribution Members (Not updatable if an incident has a workflows instance)" - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / environmentals / descriptionPrevious value: -"Associated Environmentals to create"New value: +"JSON request body field — associated Environmentals to create" - changed
Input schema / properties / event_date / descriptionPrevious value: -"Iso8601 datetime of Incident occurrence. If time is unknown, send in the date at 0:00 project time converted to UTC."New value: +"JSON request body field — iso8601 datetime of Incident occurrence. If time is unknown, send in the date at 0:00 project time converted to UTC." - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / hazard_id / descriptionPrevious value: -"The ID of a Hazard"New value: +"JSON request body field — unique identifier of the hazard" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / injuries / descriptionPrevious value: -"Associated Injuries to create"New value: +"JSON request body field — associated Injuries to create" - changed
Input schema / properties / location_id / descriptionPrevious value: -"The ID of a Location"New value: +"JSON request body field — the ID of a Location" - changed
Input schema / properties / near_misses / descriptionPrevious value: -"Associated Near Misses to create"New value: +"JSON request body field — associated Near Misses to create" - changed
Input schema / properties / private / descriptionPrevious value: -"Indicates whether an Incident is private"New value: +"JSON request body field — indicates whether an Incident is private" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / property_damages / descriptionPrevious value: -"Associated Property Damages to create"New value: +"JSON request body field — associated Property Damages to create" - changed
Input schema / properties / recordable / descriptionPrevious value: -"Indicates whether an Incident is recordable"New value: +"JSON request body field — indicates whether an Incident is recordable" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"Whether or not Configurable validations from the Incident/Injury Configurable Field Set should be run (default: false).\nSee (https://developers.procore.com/reference/configurable-field-sets#list-pr..."New value: +"Query string parameter — whether or not Configurable validations from the Incident/Injury Configurable Field Set should be run (default: false).\nSee (https://developers.procore.com/reference/configurable-field-sets#list-pr..." - changed
Input schema / properties / status / descriptionPrevious value: -"Status (Not updatable if an incident has a workflows instance)"New value: +"JSON request body field — status (Not updatable if an incident has a workflows instance)" - changed
Input schema / properties / time_unknown / descriptionPrevious value: -"Indicates that the time of the Incident occurrence is unknown"New value: +"JSON request body field — indicates that the time of the Incident occurrence is unknown" - changed
Input schema / properties / title / descriptionPrevious value: -"Incident Title"New value: +"JSON request body field — incident Title" - changed
Input schema / properties / type_id / descriptionPrevious value: -"The ID of the Incident Type. Defaults to the company's General type if not provided. The type must be active."New value: +"JSON request body field — the ID of the Incident Type. Defaults to the company's General type if not provided. The type must be active." - changed
Input schema / properties / upload_uuids / descriptionPrevious value: -"Array of uploaded file UUIDs."New value: +"JSON request body field — array of uploaded file UUIDs." - changed
Input schema / properties / witness_statements_attributes / descriptionPrevious value: -"Associated Witness Statement to create"New value: +"JSON request body field — associated Witness Statement to create"
- Changed
create_incident_action_type3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Incident Action Type is available for use"New value: +"JSON request body field — flag that denotes if the Incident Action Type is available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Incident Action Type"New value: +"JSON request body field — the Name of the Incident Action Type"
- Changed
create_injury27 fields changed- changed
Input schema / properties / affected_body_parts / descriptionPrevious value: -"DEPRECATED - Use body_part_ids instead. The body parts affected by the affliction. This requires an affliction_type to be set."New value: +"JSON request body field — dEPRECATED - Use body_part_ids instead. The body parts affected by the affliction. This requires an affliction_type to be set." - changed
Input schema / properties / affected_company_id / descriptionPrevious value: -"The ID of the Affected Company"New value: +"JSON request body field — the ID of the Affected Company" - changed
Input schema / properties / affected_party_id / descriptionPrevious value: -"The ID of the Affected Person. This supports full and reference Users from the People endpoints."New value: +"JSON request body field — the ID of the Affected Person. This supports full and reference Users from the People endpoints." - changed
Input schema / properties / affected_person_id / descriptionPrevious value: -"The ID of the Affected Person. This only supports full Users from the Users endpoints."New value: +"JSON request body field — the ID of the Affected Person. This only supports full Users from the Users endpoints." - changed
Input schema / properties / affliction_type_id / descriptionPrevious value: -"The ID of the Affliction Type. This cannot be cleared if there is an affected_body_part."New value: +"JSON request body field — the ID of the Affliction Type. This cannot be cleared if there is an affected_body_part." - changed
Input schema / properties / body_diagram_type / descriptionPrevious value: -"body_diagram_type"New value: +"JSON request body field — the body diagram type for this Incidents operation" - changed
Input schema / properties / body_part_ids / descriptionPrevious value: -"The IDs of body parts affected by the affliction. This requires an affliction_type to be set."New value: +"JSON request body field — the IDs of body parts affected by the affliction. This requires an affliction_type to be set." - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / date_of_death / descriptionPrevious value: -"Date of death"New value: +"JSON request body field — the date of death for this Incidents operation" - changed
Input schema / properties / date_returned_to_work / descriptionPrevious value: -"Date returned to work"New value: +"JSON request body field — date returned to work" - changed
Input schema / properties / description / descriptionPrevious value: -"Description of event in Rich Text format"New value: +"JSON request body field — description of event in Rich Text format" - changed
Input schema / properties / filing_type / descriptionPrevious value: -"Filing Type - The 'recordable' filing_type value is deprecated. When a filing type of 'recordable' is provided, the `recordable` attribute of the Injury will instead be set to 'true'."New value: +"JSON request body field — filing Type - The 'recordable' filing_type value is deprecated. When a filing type of 'recordable' is provided, the `recordable` attribute of the Injury will instead be set to 'true'." - changed
Input schema / properties / harm_source_id / descriptionPrevious value: -"The ID of the Harm Source"New value: +"JSON request body field — the ID of the Harm Source" - changed
Input schema / properties / hospitalized_overnight / descriptionPrevious value: -"Represents whether the injured person was hospitalized overnight"New value: +"JSON request body field — represents whether the injured person was hospitalized overnight" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"The ID of the Incident"New value: +"JSON request body field — the ID of the Incident" - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"The ID of the Managed Equipment"New value: +"JSON request body field — the ID of the Managed Equipment" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / recordable / descriptionPrevious value: -"Represents whether the Injury record is recordable"New value: +"JSON request body field — represents whether the Injury record is recordable" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"Whether or not Configurable validations from the Injury Configurable Field Set should be run (default: false).\nSee (https://developers.procore.com/reference/configurable-field-sets#list-project-con..."New value: +"Query string parameter — whether or not Configurable validations from the Injury Configurable Field Set should be run (default: false).\nSee (https://developers.procore.com/reference/configurable-field-sets#list-project-con..." - changed
Input schema / properties / treated_in_er / descriptionPrevious value: -"Represents whether the injured person was treated in the ER"New value: +"JSON request body field — represents whether the injured person was treated in the ER" - changed
Input schema / properties / treatment_facility / descriptionPrevious value: -"The name of the treatment facility"New value: +"JSON request body field — the name of the treatment facility" - changed
Input schema / properties / treatment_facility_address / descriptionPrevious value: -"The street address of the treatment facility"New value: +"JSON request body field — the street address of the treatment facility" - changed
Input schema / properties / treatment_provider / descriptionPrevious value: -"The name of the treatment provider"New value: +"JSON request body field — the name of the treatment provider" - changed
Input schema / properties / work_activity_id / descriptionPrevious value: -"The ID of the Work Activity"New value: +"JSON request body field — the ID of the Work Activity" - changed
Input schema / properties / work_days_absent / descriptionPrevious value: -"The number of days absent from work"New value: +"JSON request body field — the number of days absent from work" - changed
Input schema / properties / work_days_restricted / descriptionPrevious value: -"The number of days on restricted work"New value: +"JSON request body field — the number of days on restricted work" - changed
Input schema / properties / work_days_transferred / descriptionPrevious value: -"The number of days transferred"New value: +"JSON request body field — the number of days transferred"
- Changed
create_inspection_log3 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Inspection Log Attachments are not viewable or used on web.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data to..."New value: +"JSON request body field — inspection Log Attachments are not viewable or used on web.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data to..." - changed
Input schema / properties / inspection_log / descriptionPrevious value: -"inspection_log"New value: +"JSON request body field — the inspection log for this Daily Log operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_inspection_type2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"Name"New value: +"JSON request body field — the name for this Inspections operation"
- Changed
create_installation_request4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Company ID. Note: Only one of project_id or company_id is required."New value: +"JSON request body field — company ID. Note: Only one of project_id or company_id is required." - changed
Input schema / properties / developer_app_id / descriptionPrevious value: -"ID of an application from the developer portal"New value: +"JSON request body field — iD of an application from the developer portal" - changed
Input schema / properties / implicit / descriptionPrevious value: -"Implicit. Defines whether request has been made implicitly."New value: +"JSON request body field — implicit. Defines whether request has been made implicitly." - changed
Input schema / properties / notes / descriptionPrevious value: -"Notes. Notes to be sent to company admins along with the request."New value: +"JSON request body field — notes. Notes to be sent to company admins along with the request."
- Changed
create_instruction_types2 fields changed- changed
Input schema / properties / name / descriptionPrevious value: -"Name of Instruction Type"New value: +"JSON request body field — name of Instruction Type" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_instructions16 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Instruction's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as fi..."New value: +"JSON request body field — instruction's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as fi..." - changed
Input schema / properties / attention_ids / descriptionPrevious value: -"An array of IDs of the Attentions of the Instruction"New value: +"JSON request body field — an array of IDs of the Attentions of the Instruction" - changed
Input schema / properties / cost_impact / descriptionPrevious value: -"The Cost Impact of the Instruction"New value: +"JSON request body field — the Cost Impact of the Instruction" - changed
Input schema / properties / date_received / descriptionPrevious value: -"date_received"New value: +"JSON request body field — the date received for this Daily Log operation" - changed
Input schema / properties / description / descriptionPrevious value: -"The Description of the Instruction"New value: +"JSON request body field — the Description of the Instruction" - changed
Input schema / properties / distribution_member_ids / descriptionPrevious value: -"An array of IDs of the Distributions of the Instruction"New value: +"JSON request body field — an array of IDs of the Distributions of the Instruction" - changed
Input schema / properties / instruction_from_id / descriptionPrevious value: -"ID of the User who the Instruction is from"New value: +"JSON request body field — iD of the User who the Instruction is from" - changed
Input schema / properties / instruction_type_id / descriptionPrevious value: -"ID of the Instruction Type"New value: +"JSON request body field — iD of the Instruction Type" - changed
Input schema / properties / number / descriptionPrevious value: -"The Number of the Instruction"New value: +"JSON request body field — the Number of the Instruction" - changed
Input schema / properties / private / descriptionPrevious value: -"The Private status of the Instruction"New value: +"JSON request body field — the Private status of the Instruction" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / schedule_impact / descriptionPrevious value: -"The Schedule Impact of the Instruction"New value: +"JSON request body field — the Schedule Impact of the Instruction" - changed
Input schema / properties / status / descriptionPrevious value: -"The Status of the Instruction"New value: +"JSON request body field — the Status of the Instruction" - changed
Input schema / properties / title / descriptionPrevious value: -"The Title of the Instruction"New value: +"JSON request body field — the Title of the Instruction" - changed
Input schema / properties / trade_ids / descriptionPrevious value: -"An array of IDs of the Trades of the Instruction"New value: +"JSON request body field — an array of IDs of the Trades of the Instruction" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"The specified array of upload ids is saved as Site Instruction Attachments."New value: +"JSON request body field — the specified array of upload ids is saved as Site Instruction Attachments."
- Changed
create_item_response_set4 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Indicates whether a Response Set is available for use"New value: +"JSON request body field — indicates whether a Response Set is available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / memberships_attributes / descriptionPrevious value: -"Array of Response Set Memberships (Responses)"New value: +"JSON request body field — array of Response Set Memberships (Responses)" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the Response Set"New value: +"JSON request body field — name of the Response Set"
- Changed
create_line_item_type2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company" - changed
Input schema / properties / line_item_type / descriptionPrevious value: -"Line Item Type object"New value: +"JSON request body field — line Item Type object"
- Changed
create_line_items_and_line_item_groups_in_bulk_to_the_project3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique company identifier associated with the Procore User Account."New value: +"URL path parameter — unique company identifier associated with the Procore User Account." - changed
Input schema / properties / groups / descriptionPrevious value: -"groups"New value: +"JSON request body field — the groups for this Estimating operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique project identifier"New value: +"URL path parameter — unique project identifier"
- Changed
create_line_items_and_line_item_groups_in_bulk_to_the_project_23 fields changed- changed
Input schema / properties / bid_board_project_id / descriptionPrevious value: -"Unique BidBoard project identifier"New value: +"URL path parameter — unique BidBoard project identifier" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique company identifier associated with the Procore User Account."New value: +"URL path parameter — unique company identifier associated with the Procore User Account." - changed
Input schema / properties / groups / descriptionPrevious value: -"groups"New value: +"JSON request body field — the groups for this Bid Board operation"
- Changed
create_link3 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / title / descriptionPrevious value: -"The user-facing title of the link"New value: +"JSON request body field — the user-facing title of the link" - changed
Input schema / properties / url / descriptionPrevious value: -"The full URL for the link"New value: +"JSON request body field — the full URL for the link"
- Changed
create_location2 fields changed- changed
Input schema / properties / location / descriptionPrevious value: -"location"New value: +"JSON request body field — the location for this Project operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Location belongs to"New value: +"JSON request body field — the ID of the Project the Location belongs to"
- Changed
create_location_admin3 fields changed- changed
Input schema / properties / node_name / descriptionPrevious value: -"The Node Name of the Location"New value: +"JSON request body field — the Node Name of the Location" - changed
Input schema / properties / parent_id / descriptionPrevious value: -"The ID of the Parent Location of the Location"New value: +"JSON request body field — the ID of the Parent Location of the Location" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_lookahead4 fields changed- changed
Input schema / properties / copied_from_id / descriptionPrevious value: -"ID of a previously created lookahead that will be used\nto populate this lookahead. Defaults to the most recent\nlookahead."New value: +"JSON request body field — iD of a previously created lookahead that will be used\nto populate this lookahead. Defaults to null, in which\ncase the lookahead will populate directly from the\nmaster schedule." - changed
Input schema / properties / end_date / descriptionPrevious value: -"Lookahead end date, in project time zone"New value: +"JSON request body field — lookahead end date, in project time zone" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Lookahead start date, in project time zone"New value: +"JSON request body field — lookahead start date, in project time zone"
- Changed
create_lookahead_task11 fields changed- changed
Input schema / properties / assignee_ids / descriptionPrevious value: -"ID of Contact(s) to assign to this Lookahead Task"New value: +"JSON request body field — iD of Contact(s) to assign to this Lookahead Task" - changed
Input schema / properties / comment / descriptionPrevious value: -"Additional comments"New value: +"JSON request body field — additional comments" - changed
Input schema / properties / end_date / descriptionPrevious value: -"Task end date, in project time zone"New value: +"JSON request body field — task end date, in project time zone" - changed
Input schema / properties / lookahead_id / descriptionPrevious value: -"ID of the associated Lookahead"New value: +"JSON request body field — iD of the associated Lookahead" - changed
Input schema / properties / name / descriptionPrevious value: -"The name of the Task"New value: +"JSON request body field — the name of the Task" - changed
Input schema / properties / parent_id / descriptionPrevious value: -"ID of the parent Lookahead Task"New value: +"JSON request body field — iD of the parent Lookahead Task" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / resource_ids / descriptionPrevious value: -"ID of Resource(s) to assign to this Lookahead Task"New value: +"JSON request body field — iD of Resource(s) to assign to this Lookahead Task" - changed
Input schema / properties / segments / descriptionPrevious value: -"segments"New value: +"JSON request body field — the segments for this Schedule (Legacy) operation" - changed
Input schema / properties / start_date / descriptionPrevious value: -"Task start date, in project time zone"New value: +"JSON request body field — task start date, in project time zone" - changed
Input schema / properties / vendor_ids / descriptionPrevious value: -"ID of Company(s) to assign to this Lookahead Task"New value: +"JSON request body field — iD of Company(s) to assign to this Lookahead Task"
- Removed
create_lookahead_v1_1 - Changed
create_maintenance_log_attachment6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / documents / descriptionPrevious value: -"documents"New value: +"JSON request body field — the documents for this Field Productivity operation" - changed
Input schema / properties / folders / descriptionPrevious value: -"folders"New value: +"JSON request body field — the folders for this Field Productivity operation" - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Managed Equipment Maintenance Log"New value: +"URL path parameter — id of the Managed Equipment Maintenance Log" - changed
Input schema / properties / managed_equipment_maintenance_logs_id / descriptionPrevious value: -"Maintenance log Id the maintenance log attachment is associated with"New value: +"JSON request body field — maintenance log Id the maintenance log attachment is associated with" - changed
Input schema / properties / upload_uuids / descriptionPrevious value: -"upload_uuids"New value: +"JSON request body field — the upload uuids for this Field Productivity operation"
- Changed
create_manpower_log4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Manpower Log Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — manpower Log Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / manpower_log / descriptionPrevious value: -"manpower_log"New value: +"JSON request body field — the manpower log for this Daily Log operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
create_material6 fields changed- changed
Input schema / properties / description / descriptionPrevious value: -"Description of the material"New value: +"JSON request body field — description of the material" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the material"New value: +"JSON request body field — name of the material" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity / descriptionPrevious value: -"Quantity of the material"New value: +"JSON request body field — quantity of the material" - changed
Input schema / properties / time_and_material_entry_id / descriptionPrevious value: -"Time & Material Entry Id the material is associated with"New value: +"JSON request body field — time & Material Entry Id the material is associated with" - changed
Input schema / properties / uom / descriptionPrevious value: -"Unit of measure for the material"New value: +"JSON request body field — unit of measure for the material"
- Removed
create_meeting - Changed
create_meeting_attendee_record4 fields changed- changed
Input schema / properties / login_information_id / descriptionPrevious value: -"The ID of the User to associate with the Meeting"New value: +"JSON request body field — the ID of the User to associate with the Meeting" - changed
Input schema / properties / meeting_id / descriptionPrevious value: -"ID of the Meeting"New value: +"Query string parameter — unique identifier of the meeting" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / status / descriptionPrevious value: -"Attendance status"New value: +"JSON request body field — attendance status"
- Changed
create_meeting_category3 fields changed- changed
Input schema / properties / meeting_category / descriptionPrevious value: -"Meeting Category object"New value: +"JSON request body field — meeting Category object" - changed
Input schema / properties / meeting_id / descriptionPrevious value: -"The ID of the Meeting the Meeting Category belongs to"New value: +"JSON request body field — the ID of the Meeting the Meeting Category belongs to" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Meeting Category belongs to"New value: +"JSON request body field — the ID of the Project the Meeting Category belongs to"
- Added
create_meeting_project - Removed
create_meeting_topic - Added
create_meeting_topic_project - Added
create_meeting_topic_v1_0 - Removed
create_meeting_topic_v1_1 - Added
create_meeting_v1_0 - Removed
create_meeting_v1_1 - Changed
create_monitoring_resource8 fields changed- changed
Input schema / properties / budget_line_item_id / descriptionPrevious value: -"Budget Line Item ID"New value: +"JSON request body field — unique identifier of the budget line item" - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Budget operation" - changed
Input schema / properties / end_date / descriptionPrevious value: -"End Date, expressed in ISO 8601 date format (YYYY-MM-DD)"New value: +"JSON request body field — end Date, expressed in ISO 8601 date format (YYYY-MM-DD)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start Date, expressed in ISO 8601 date format (YYYY-MM-DD)"New value: +"JSON request body field — start Date, expressed in ISO 8601 date format (YYYY-MM-DD)" - changed
Input schema / properties / unit_cost / descriptionPrevious value: -"Unit Cost"New value: +"JSON request body field — the unit cost for this Budget operation" - changed
Input schema / properties / unit_of_measure / descriptionPrevious value: -"Unit of Measure"New value: +"JSON request body field — the unit of measure for this Budget operation" - changed
Input schema / properties / utilization / descriptionPrevious value: -"Utilization, expressed as a decimal where 1.0 is 100%"New value: +"JSON request body field — utilization, expressed as a decimal where 1.0 is 100%"
- Changed
create_near_miss10 fields changed- changed
Input schema / properties / affected_company_id / descriptionPrevious value: -"The ID of the Affected Company"New value: +"JSON request body field — the ID of the Affected Company" - changed
Input schema / properties / affected_party_id / descriptionPrevious value: -"The ID of the Affected Person. This supports full and reference Users from the People endpoints."New value: +"JSON request body field — the ID of the Affected Person. This supports full and reference Users from the People endpoints." - changed
Input schema / properties / affected_person_id / descriptionPrevious value: -"The ID of the Affected Person. This only supports full Users from the Users endpoints."New value: +"JSON request body field — the ID of the Affected Person. This only supports full Users from the Users endpoints." - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"Description of event in Rich Text format"New value: +"JSON request body field — description of event in Rich Text format" - changed
Input schema / properties / harm_source_id / descriptionPrevious value: -"The ID of the Harm Source"New value: +"JSON request body field — the ID of the Harm Source" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"The ID of the Incident"New value: +"JSON request body field — the ID of the Incident" - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"The ID of the Managed Equipment"New value: +"JSON request body field — the ID of the Managed Equipment" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / work_activity_id / descriptionPrevious value: -"The ID of the Work Activity"New value: +"JSON request body field — the ID of the Work Activity"
- Changed
create_new_delay_log_type3 fields changed- changed
Input schema / properties / display_name / descriptionPrevious value: -"The name displayed in the web UI"New value: +"JSON request body field — the name displayed in the web UI" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / visible / descriptionPrevious value: -"Whether the delay log type is displayed in the UI. Defaults to true"New value: +"JSON request body field — whether the delay log type is displayed in the UI. Defaults to true"
- Added
create_new_sub_cost_catalog - Removed
create_new_sub_cost_catalog_v2_0 - Changed
create_notes_log4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Notes Log Attachments are not viewable or used on web.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data togethe..."New value: +"JSON request body field — notes Log Attachments are not viewable or used on web.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data togethe..." - changed
Input schema / properties / notes_log / descriptionPrevious value: -"notes_log"New value: +"JSON request body field — the notes log for this Daily Log operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
create_observation_item5 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"[DEPRECATED] An array of the Attachments of the Observation Item. Please use upload_ids instead. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and\n..."New value: +"JSON request body field — [DEPRECATED] An array of the Attachments of the Observation Item. Please use upload_ids instead. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and\n..." - changed
Input schema / properties / inspection_item_failed / descriptionPrevious value: -"1 denotes that this Observation Item is being created from a failed Checklist Item. This will update the status of the Checklist Item to 'no' (fail). `observation[checklist_item_id]` must be provid..."New value: +"JSON request body field — 1 denotes that this Observation Item is being created from a failed Checklist Item. This will update the status of the Checklist Item to 'no' (fail). `observation[checklist_item_id]` must be provid..." - changed
Input schema / properties / observation / descriptionPrevious value: -"Item object"New value: +"JSON request body field — item object" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Observation Item belongs to"New value: +"JSON request body field — the ID of the Project the Observation Item belongs to" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"Whether or not Configurable validations from the Observation Items Category Configurable Field Set should be run (default: false).\nSee (https://developers.procore.com/reference/observations#list-ob..."New value: +"Query string parameter — whether or not Configurable validations from the Observation Items Category Configurable Field Set should be run (default: false).\nSee (https://developers.procore.com/reference/observations#list-ob..."
- Changed
create_observation_item_response_log6 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"An array of the Attachments of the Observation Item Response Log.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-d..."New value: +"JSON request body field — an array of the Attachments of the Observation Item Response Log.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-d..." - changed
Input schema / properties / item_id / descriptionPrevious value: -"Observation Item ID"New value: +"URL path parameter — unique identifier of the item" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Observation Item Response Log belongs to"New value: +"JSON request body field — the ID of the Project the Observation Item Response Log belongs to" - changed
Input schema / properties / response_log / descriptionPrevious value: -"Response Log body"New value: +"JSON request body field — response Log body" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"Whether or not Configurable validations from the Observation Items Category Configurable Field Set should be run (default: false).\nSee (https://developers.procore.com/reference/observations#list-ob..."New value: +"Query string parameter — whether or not Configurable validations from the Observation Items Category Configurable Field Set should be run (default: false).\nSee (https://developers.procore.com/reference/observations#list-ob..." - changed
Input schema / properties / status / descriptionPrevious value: -"The Status of the Observation"New value: +"JSON request body field — the Status of the Observation"
- Changed
create_or_find_bim_view_folder_by_path2 fields changed- changed
Input schema / properties / bim_view_folder / descriptionPrevious value: -"bim_view_folder"New value: +"JSON request body field — the bim view folder for this BIM operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_payment_application_owner_invoice_for_prime_contract4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Payment application attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]`..."New value: +"JSON request body field — payment application attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]`..." - changed
Input schema / properties / payment_application / descriptionPrevious value: -"Payment Application (Owner Invoice)"New value: +"JSON request body field — payment Application (Owner Invoice)" - changed
Input schema / properties / prime_contract_id / descriptionPrevious value: -"Prime Contract ID"New value: +"URL path parameter — unique identifier of the prime contract" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Added
create_pdf_export_for_a_commitment_change_order - Added
create_pdf_export_for_a_commitment_change_order_batch - Removed
create_pdf_export_for_a_commitment_change_order_batch_v2_0 - Removed
create_pdf_export_for_a_commitment_change_order_v2_0 - Added
create_pdf_export_for_a_prime_change_order - Added
create_pdf_export_for_a_prime_change_order_batch - Removed
create_pdf_export_for_a_prime_change_order_batch_v2_0 - Removed
create_pdf_export_for_a_prime_change_order_v2_0 - Added
create_pdf_export_for_a_prime_contract - Removed
create_pdf_export_for_a_prime_contract_v2_0 - Added
create_pdf_export_for_commitment_contracts - Removed
create_pdf_export_for_commitment_contracts_v2_0 - Changed
create_pdf_template_config5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / default_project / descriptionPrevious value: -"set the configs as default to every company's project"New value: +"JSON request body field — set the configs as default to every company's project" - changed
Input schema / properties / description / descriptionPrevious value: -"description of the PdfTemplateConfig"New value: +"JSON request body field — description of the PdfTemplateConfig" - changed
Input schema / properties / pdf_config_options / descriptionPrevious value: -"pdf_config_options"New value: +"JSON request body field — the pdf config options for this Documents operation" - changed
Input schema / properties / template_name / descriptionPrevious value: -"PdfTemplate name"New value: +"JSON request body field — pdfTemplate name"
- Changed
create_permission_template10 fields changed- changed
Input schema / properties / category / descriptionPrevious value: -"The category of the Permission Template"New value: +"JSON request body field — the category of the Permission Template" - changed
Input schema / properties / company_id / descriptionPrevious value: -"The ID of the Company the Permission Template belongs to"New value: +"JSON request body field — the ID of the Company the Permission Template belongs to" - changed
Input schema / properties / id / descriptionPrevious value: -"The ID of the Permission Template"New value: +"JSON request body field — the ID of the Permission Template" - changed
Input schema / properties / name / descriptionPrevious value: -"The name of the Permission Template"New value: +"JSON request body field — the name of the Permission Template" - changed
Input schema / properties / permissions / descriptionPrevious value: -"permitted actions for active tools"New value: +"JSON request body field — permitted actions for active tools" - changed
Input schema / properties / project_id / descriptionPrevious value: -"id of corresponding project if provider_type == Project"New value: +"JSON request body field — id of corresponding project if provider_type == Project" - changed
Input schema / properties / provider_id / descriptionPrevious value: -"Either the company_id or project_id based on provider_type"New value: +"JSON request body field — either the company_id or project_id based on provider_type" - changed
Input schema / properties / provider_type / descriptionPrevious value: -"'Project' or 'Company'"New value: +"JSON request body field — 'Project' or 'Company'" - changed
Input schema / properties / type / descriptionPrevious value: -"'company_tools', 'global' or 'project_specific'"New value: +"JSON request body field — 'company_tools', 'global' or 'project_specific'" - changed
Input schema / properties / user_access_levels / descriptionPrevious value: -"user access levels for active tools"New value: +"JSON request body field — user access levels for active tools"
- Changed
create_plan_revision_log3 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Plan Revision Log Attachments are not viewable or used on web.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data..."New value: +"JSON request body field — plan Revision Log Attachments are not viewable or used on web.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data..." - changed
Input schema / properties / plan_revision_log / descriptionPrevious value: -"plan_revision_log"New value: +"JSON request body field — the plan revision log for this Daily Log operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_potential_change_order3 fields changed- changed
Input schema / properties / change_order / descriptionPrevious value: -"change_order"New value: +"JSON request body field — the change order for this Change Orders operation" - changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_potential_change_order_line_item3 fields changed- changed
Input schema / properties / line_item / descriptionPrevious value: -"The Line Item object"New value: +"JSON request body field — the Line Item object" - changed
Input schema / properties / potential_change_order_id / descriptionPrevious value: -"Potential Change Order ID"New value: +"URL path parameter — potential Change Order ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_prime_change_order31 fields changed- changed
Input schema / properties / attachment_ids / descriptionPrevious value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response" - changed
Input schema / properties / batch_id / descriptionPrevious value: -"Unique identifier for a change order batch."New value: +"JSON request body field — unique identifier for a change order batch." - changed
Input schema / properties / change_event_attachment_ids / descriptionPrevious value: -"List of attachment IDs to attach. These must presently be associated with Change Events."New value: +"JSON request body field — list of attachment IDs to attach. These must presently be associated with Change Events." - changed
Input schema / properties / change_order_change_reason_id / descriptionPrevious value: -"Unique identifier for the change reason."New value: +"JSON request body field — unique identifier for the change reason." - changed
Input schema / properties / contract_id / descriptionPrevious value: -"Unique identifier for the contract."New value: +"JSON request body field — unique identifier for the contract." - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Prime Contracts operation" - changed
Input schema / properties / designated_reviewer_id / descriptionPrevious value: -"Unique identifier for the designated reviewer. This field is only supported for single-tier projects. Behavior is undefined in multi-tier projects."New value: +"JSON request body field — unique identifier for the designated reviewer. This field is only supported for single-tier projects. Behavior is undefined in multi-tier projects." - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / due_date / descriptionPrevious value: -"Due Date"New value: +"JSON request body field — due date in YYYY-MM-DD format" - changed
Input schema / properties / enable_ssov / descriptionPrevious value: -"Whether to enable SSOV on this Change Order. Only applicable to Commitment Change Orders."New value: +"JSON request body field — whether to enable SSOV on this Change Order. Only applicable to Commitment Change Orders." - changed
Input schema / properties / executed / descriptionPrevious value: -"Whether or not the Change Order is executed"New value: +"JSON request body field — whether or not the Change Order is executed" - changed
Input schema / properties / field_change / descriptionPrevious value: -"Field Change"New value: +"JSON request body field — the field change for this Prime Contracts operation" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / invoiced_date / descriptionPrevious value: -"Invoiced Date"New value: +"JSON request body field — the invoiced date in YYYY-MM-DD format" - changed
Input schema / properties / location_id / descriptionPrevious value: -"Unique identifier for the location."New value: +"JSON request body field — unique identifier for the location." - changed
Input schema / properties / number / descriptionPrevious value: -"Number of the Change Order"New value: +"JSON request body field — number of the Change Order" - changed
Input schema / properties / paid / descriptionPrevious value: -"Whether or not the Commitment Change Order is paid"New value: +"JSON request body field — whether or not the Commitment Change Order is paid" - changed
Input schema / properties / paid_date / descriptionPrevious value: -"Paid Date"New value: +"JSON request body field — the paid date in YYYY-MM-DD format" - changed
Input schema / properties / private / descriptionPrevious value: -"Whether or not the Commitment Change Order is private"New value: +"JSON request body field — whether or not the Commitment Change Order is private" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / reason / descriptionPrevious value: -"Reason for the change order"New value: +"JSON request body field — reason for the change order" - changed
Input schema / properties / received_from_id / descriptionPrevious value: -"Unique identifier for the received from entity."New value: +"JSON request body field — unique identifier for the received from entity." - changed
Input schema / properties / reference / descriptionPrevious value: -"Reference"New value: +"JSON request body field — the reference for this Prime Contracts operation" - changed
Input schema / properties / revision / descriptionPrevious value: -"Revision Number"New value: +"JSON request body field — revision Number" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / schedule_impact_amount / descriptionPrevious value: -"Schedule impact in days"New value: +"JSON request body field — schedule impact in days" - changed
Input schema / properties / signature_required / descriptionPrevious value: -"Whether a signature will be required for this Change Order"New value: +"JSON request body field — whether a signature will be required for this Change Order" - changed
Input schema / properties / signed_change_order_received_date / descriptionPrevious value: -"Signed Change Order Received Date"New value: +"JSON request body field — signed Change Order Received Date" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Prime Contracts operation" - changed
Input schema / properties / title / descriptionPrevious value: -"Title of the Contract"New value: +"JSON request body field — title of the Contract"
- Changed
create_prime_change_order_batch28 fields changed- changed
Input schema / properties / attachment_ids / descriptionPrevious value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response" - changed
Input schema / properties / change_event_attachment_ids / descriptionPrevious value: -"List of attachment IDs to attach. These must presently be associated with Change Events."New value: +"JSON request body field — list of attachment IDs to attach. These must presently be associated with Change Events." - changed
Input schema / properties / change_order_ids / descriptionPrevious value: -"Array of Change Order (PCO) IDs to link to this batch. This field is only supported for two-tier projects."New value: +"JSON request body field — array of Change Order (PCO) IDs to link to this batch. This field is only supported for two-tier projects." - changed
Input schema / properties / contract_id / descriptionPrevious value: -"Unique identifier for the contract."New value: +"JSON request body field — unique identifier for the contract." - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Prime Contracts operation" - changed
Input schema / properties / designated_reviewer_id / descriptionPrevious value: -"Unique identifier for the designated reviewer. This field is only supported for single-tier projects. Behavior is undefined in multi-tier projects."New value: +"JSON request body field — unique identifier for the designated reviewer. This field is only supported for single-tier projects. Behavior is undefined in multi-tier projects." - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / due_date / descriptionPrevious value: -"Due Date"New value: +"JSON request body field — due date in YYYY-MM-DD format" - changed
Input schema / properties / executed / descriptionPrevious value: -"Whether or not the Change Order Batch is executed"New value: +"JSON request body field — whether or not the Change Order Batch is executed" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / invoiced_date / descriptionPrevious value: -"Invoiced Date"New value: +"JSON request body field — the invoiced date in YYYY-MM-DD format" - changed
Input schema / properties / legacy_request_ids / descriptionPrevious value: -"Array of Change Order Request IDs to link to this batch. This field is only supported for three-tier projects."New value: +"JSON request body field — array of Change Order Request IDs to link to this batch. This field is only supported for three-tier projects." - changed
Input schema / properties / number / descriptionPrevious value: -"Number of the Change Order Batch"New value: +"JSON request body field — number of the Change Order Batch" - changed
Input schema / properties / paid_date / descriptionPrevious value: -"Paid Date"New value: +"JSON request body field — the paid date in YYYY-MM-DD format" - changed
Input schema / properties / private / descriptionPrevious value: -"Whether or not the Change Order Batch is private"New value: +"JSON request body field — whether or not the Change Order Batch is private" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / revised_substantial_completion_date / descriptionPrevious value: -"Revised substantial completion date"New value: +"JSON request body field — revised substantial completion date" - changed
Input schema / properties / revision / descriptionPrevious value: -"Revision Number"New value: +"JSON request body field — revision Number" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / schedule_impact_amount / descriptionPrevious value: -"Schedule impact in days"New value: +"JSON request body field — schedule impact in days" - changed
Input schema / properties / signature_required / descriptionPrevious value: -"Whether a signature will be required for this Change Order Batch"New value: +"JSON request body field — whether a signature will be required for this Change Order Batch" - changed
Input schema / properties / signed_change_order_received_date / descriptionPrevious value: -"Signed Change Order Batch Received Date"New value: +"JSON request body field — signed Change Order Batch Received Date" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Prime Contracts operation" - changed
Input schema / properties / title / descriptionPrevious value: -"Title of the Change Order Batch"New value: +"JSON request body field — title of the Change Order Batch" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
- Added
create_prime_change_order_line_item - Removed
create_prime_change_order_line_item_v2_0 - Removed
create_prime_contract - Removed
create_prime_contract_line_item - Added
create_prime_contract_line_item_project - Added
create_prime_contract_line_item_v1_0 - Removed
create_prime_contract_line_item_v2_0 - Added
create_prime_contract_project - Added
create_prime_contract_v1_0 - Removed
create_prime_contract_v2_0 - Changed
create_procore_item_association3 fields changed- changed
Input schema / properties / coordination_issue_id / descriptionPrevious value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID" - changed
Input schema / properties / procore_item / descriptionPrevious value: -"Details of Procore item to be linked to a CoordinationIssue"New value: +"JSON request body field — details of Procore item to be linked to a CoordinationIssue" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_productivity_log2 fields changed- changed
Input schema / properties / productivity_log / descriptionPrevious value: -"productivity_log"New value: +"JSON request body field — the productivity log for this Daily Log operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_program5 fields changed- changed
Input schema / properties / address_freeform / descriptionPrevious value: -"The Address of the Program"New value: +"JSON request body field — the Address of the Program" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Program"New value: +"JSON request body field — the Name of the Program" - changed
Input schema / properties / website / descriptionPrevious value: -"The Website of the Program"New value: +"JSON request body field — the Website of the Program" - changed
Input schema / properties / zip / descriptionPrevious value: -"The Zip code of the Program"New value: +"JSON request body field — the Zip code of the Program"
- Changed
create_project3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"The company identifier the project is associated with."New value: +"JSON request body field — the company identifier the project is associated with." - changed
Input schema / properties / project / descriptionPrevious value: -"project"New value: +"JSON request body field — the project for this Portfolio operation" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
create_project_action_plan_template_reference4 fields changed- changed
Input schema / properties / payload / descriptionPrevious value: -"One of attachment, drawing_revision_id, file_version_id, specification_section_id, generic_tool_item_id, form_id, image_id, meeting_id, or observation_item_id is accepted depending on the type prov..."New value: +"JSON request body field — one of attachment, drawing_revision_id, file_version_id, specification_section_id, generic_tool_item_id, form_id, image_id, meeting_id, or observation_item_id is accepted depending on the type prov..." - changed
Input schema / properties / plan_template_item_id / descriptionPrevious value: -"Project Action Plan Template Item ID"New value: +"JSON request body field — project Action Plan Template Item ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / type / descriptionPrevious value: -"Action Plan Reference Type"New value: +"JSON request body field — action Plan Reference Type"
- Changed
create_project_bid_type2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Project Bid Type"New value: +"JSON request body field — the Name of the Project Bid Type"
- Changed
create_project_checklist_template3 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Checklist Template's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]..."New value: +"JSON request body field — checklist Template's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]..." - changed
Input schema / properties / list_template / descriptionPrevious value: -"Checklist Template object"New value: +"JSON request body field — checklist Template object" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_project_currency_configuration6 fields changed- changed
Input schema / properties / company_currency_exchange_rate_override / descriptionPrevious value: -"Override for the Company Currency Exchange Rate"New value: +"JSON request body field — override for the Company Currency Exchange Rate" - changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / currency_display / descriptionPrevious value: -"Currency Display Options"New value: +"JSON request body field — currency Display Options" - changed
Input schema / properties / currency_iso_code / descriptionPrevious value: -"Currency ISO Code"New value: +"JSON request body field — the currency iso code for this Currency Configurations operation" - changed
Input schema / properties / multicurrency_enabled / descriptionPrevious value: -"Whether to apply currencies to the project's financial objects."New value: +"JSON request body field — whether to apply currencies to the project's financial objects." - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
create_project_distribution_group5 fields changed- changed
Input schema / properties / Idempotency-Token / descriptionPrevious value: -"Unique idempotent token"New value: +"JSON request body field — unique idempotent token" - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Directory operation" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Distribution Group"New value: +"JSON request body field — the Name of the Distribution Group" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / user_ids / descriptionPrevious value: -"User IDs to associate with the Distribution Group"New value: +"JSON request body field — user IDs to associate with the Distribution Group"
- Changed
create_project_equipment_maintenance_log5 fields changed- changed
Input schema / properties / last_service_date / descriptionPrevious value: -"The Date the equipment was last services"New value: +"JSON request body field — the Date the equipment was last services" - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"Equipment Id the maintenance log is associated with"New value: +"JSON request body field — equipment Id the maintenance log is associated with" - changed
Input schema / properties / next_service_date / descriptionPrevious value: -"Next service date for the equipment"New value: +"JSON request body field — next service date for the equipment" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"The specified array of upload ids is saved as Managed Equipment Maintenance Logs Attachments."New value: +"JSON request body field — the specified array of upload ids is saved as Managed Equipment Maintenance Logs Attachments."
- Changed
create_project_exchange_rates4 fields changed- changed
Input schema / properties / base_currency_iso_code / descriptionPrevious value: -"Base Currency ISO Code"New value: +"JSON request body field — base Currency ISO Code" - changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / exchange_rates / descriptionPrevious value: -"Project exchange rates"New value: +"JSON request body field — project exchange rates" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
create_project_file10 fields changed- changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / data / descriptionPrevious value: -"[DEPRECATED] File to use as file data. Please use upload_uuid instead. Note that it's only possible to post a file using a multipart/form-data body (see RFC 2388). Most HTTP libraries will do the r..."New value: +"JSON request body field — [DEPRECATED] File to use as file data. Please use upload_uuid instead. Note that it's only possible to post a file using a multipart/form-data body (see RFC 2388). Most HTTP libraries will do the r..." - changed
Input schema / properties / description / descriptionPrevious value: -"A description of the file"New value: +"JSON request body field — a description of the file" - changed
Input schema / properties / explicit_permissions / descriptionPrevious value: -"Set file to private (true/false)"New value: +"JSON request body field — set file to private (true/false)" - changed
Input schema / properties / is_tracked / descriptionPrevious value: -"Status if a file should be tracked (true/false)"New value: +"JSON request body field — status if a file should be tracked (true/false)" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the file"New value: +"JSON request body field — the Name of the file" - changed
Input schema / properties / parent_id / descriptionPrevious value: -"The ID of the parent folder to create the file in. If not set the file will be created under the root folder."New value: +"JSON request body field — the ID of the parent folder to create the file in. If not set the file will be created under the root folder." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / unique_name / descriptionPrevious value: -"Toggles automatic renaming if the file name is already taken in a folder (unique_name = true). Returns a name taken error if a file name is taken in a folder (unique_name = false)."New value: +"JSON request body field — toggles automatic renaming if the file name is already taken in a folder (unique_name = true). Returns a name taken error if a file name is taken in a folder (unique_name = false)." - changed
Input schema / properties / upload_uuid / descriptionPrevious value: -"UUID referencing a previously completed Upload. This is the recommended approach for file uploads. See Company Uploads or Project Uploads endpoints for instructions on how to use uploads. You sho..."New value: +"JSON request body field — uUID referencing a previously completed Upload. This is the recommended approach for file uploads. See Company Uploads or Project Uploads endpoints for instructions on how to use uploads. You sho..."
- Changed
create_project_file_version6 fields changed- changed
Input schema / properties / data / descriptionPrevious value: -"[DEPRECATED] File to use as file data. Please use upload_uuid instead. Note that it's only possible to post a file using a multipart/form-data body (see RFC 2388). Most HTTP libraries will do the r..."New value: +"JSON request body field — [DEPRECATED] File to use as file data. Please use upload_uuid instead. Note that it's only possible to post a file using a multipart/form-data body (see RFC 2388). Most HTTP libraries will do the r..." - changed
Input schema / properties / file_id / descriptionPrevious value: -"The id of the File"New value: +"Query string parameter — unique identifier of the file" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the file when downloaded"New value: +"JSON request body field — name of the file when downloaded" - changed
Input schema / properties / notes / descriptionPrevious value: -"Notes about the File Version"New value: +"JSON request body field — notes about the File Version" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / upload_uuid / descriptionPrevious value: -"UUID referencing a previously completed Upload. This is the recommended approach for file uploads. See Company Uploads or Project Uploads endpoints for instructions on how to use uploads. You sho..."New value: +"JSON request body field — uUID referencing a previously completed Upload. This is the recommended approach for file uploads. See Company Uploads or Project Uploads endpoints for instructions on how to use uploads. You sho..."
- Changed
create_project_folder6 fields changed- changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / explicit_permissions / descriptionPrevious value: -"Set folder to private (true/false)"New value: +"JSON request body field — set folder to private (true/false)" - changed
Input schema / properties / is_tracked / descriptionPrevious value: -"Status if a folder should be tracked (true/false)"New value: +"JSON request body field — status if a folder should be tracked (true/false)" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the folder"New value: +"JSON request body field — the Name of the folder" - changed
Input schema / properties / parent_id / descriptionPrevious value: -"The ID of the parent folder to create the folder in. If not set the folder will be created under the root folder."New value: +"JSON request body field — the ID of the parent folder to create the folder in. If not set the folder will be created under the root folder." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
create_project_inspection_template_item_reference5 fields changed- changed
Input schema / properties / inspection_template_id / descriptionPrevious value: -"The ID of the Project Inspection Template"New value: +"URL path parameter — the ID of the Project Inspection Template" - changed
Input schema / properties / item_id / descriptionPrevious value: -"ID of the associated Project Inspection Template Item"New value: +"JSON request body field — iD of the associated Project Inspection Template Item" - changed
Input schema / properties / payload / descriptionPrevious value: -"To upload an attachment you must upload the entire payload as `multipart/form-data` content-type"New value: +"JSON request body field — to upload an attachment you must upload the entire payload as `multipart/form-data` content-type" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / type / descriptionPrevious value: -"Project Inspection Template Item Reference Type"New value: +"JSON request body field — project Inspection Template Item Reference Type"
- Changed
create_project_insurance18 fields changed- changed
Input schema / properties / additional_insured / descriptionPrevious value: -"Additional Individuals and/or Companies Insured"New value: +"JSON request body field — additional Individuals and/or Companies Insured" - changed
Input schema / properties / division_template / descriptionPrevious value: -"Division Template"New value: +"JSON request body field — the division template for this Directory operation" - changed
Input schema / properties / effective_date / descriptionPrevious value: -"Effective date"New value: +"JSON request body field — the effective date in YYYY-MM-DD format" - changed
Input schema / properties / enable_expired_insurance_notifications / descriptionPrevious value: -"Enable/Disable expired insurance notifications"New value: +"JSON request body field — enable/Disable expired insurance notifications" - changed
Input schema / properties / exempt / descriptionPrevious value: -"Exempt status"New value: +"JSON request body field — exempt status" - changed
Input schema / properties / expiration_date / descriptionPrevious value: -"Expiration date"New value: +"JSON request body field — the expiration date in YYYY-MM-DD format" - changed
Input schema / properties / info_received / descriptionPrevious value: -"Information received (or not)"New value: +"JSON request body field — information received (or not)" - changed
Input schema / properties / insurance_sets / descriptionPrevious value: -"Insurance Sets"New value: +"JSON request body field — the insurance sets for this Directory operation" - changed
Input schema / properties / insurance_type / descriptionPrevious value: -"Insurance type"New value: +"JSON request body field — the insurance type for this Directory operation" - changed
Input schema / properties / limit / descriptionPrevious value: -"Limit"New value: +"JSON request body field — the limit for this Directory operation" - changed
Input schema / properties / name / descriptionPrevious value: -"Provider name"New value: +"JSON request body field — provider name" - changed
Input schema / properties / notes / descriptionPrevious value: -"Notes"New value: +"JSON request body field — the notes for this Directory operation" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"Origin data"New value: +"JSON request body field — the origin data for this Directory operation" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin" - changed
Input schema / properties / policy_number / descriptionPrevious value: -"Policy number"New value: +"JSON request body field — the policy number for this Directory operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Directory operation" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"JSON request body field — unique identifier of the vendor"
- Changed
create_project_membership2 fields changed- changed
Input schema / properties / party_id / descriptionPrevious value: -"The ID of the Party(reference user) to be added to the Project"New value: +"JSON request body field — the ID of the Party(reference user) to be added to the Project" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_project_observation_type6 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Active or no."New value: +"JSON request body field — active or no." - changed
Input schema / properties / category / descriptionPrevious value: -"Category to be used for Observations created from this type."New value: +"JSON request body field — category to be used for Observations created from this type." - changed
Input schema / properties / name / descriptionPrevious value: -"Name to be used for Observations created from this type."New value: +"JSON request body field — name to be used for Observations created from this type." - changed
Input schema / properties / observations_category_id / descriptionPrevious value: -"Observations category id to be used for Observations created from this type."New value: +"JSON request body field — observations category id to be used for Observations created from this type." - changed
Input schema / properties / parent_id / descriptionPrevious value: -"Parent id"New value: +"JSON request body field — unique identifier of the parent" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_project_owner_type2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Project Owner Type"New value: +"JSON request body field — the Name of the Project Owner Type"
- Changed
create_project_person9 fields changed- changed
Input schema / properties / employee_id / descriptionPrevious value: -"The Employee ID of the Project Person"New value: +"JSON request body field — the Employee ID of the Project Person" - changed
Input schema / properties / first_name / descriptionPrevious value: -"The First Name of the Project Person"New value: +"JSON request body field — the First Name of the Project Person" - changed
Input schema / properties / is_employee / descriptionPrevious value: -"The Employee status of the Project Person"New value: +"JSON request body field — the Employee status of the Project Person" - changed
Input schema / properties / job_title / descriptionPrevious value: -"The Job Title of the Project Person"New value: +"JSON request body field — the Job Title of the Project Person" - changed
Input schema / properties / last_name / descriptionPrevious value: -"The Last Name of the Project Person"New value: +"JSON request body field — the Last Name of the Project Person" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"The ID of the External Data associated with the Project Person"New value: +"JSON request body field — the ID of the External Data associated with the Project Person" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view of the resource to return (which attributes should be present in the response). Users without read permissions to Directory are limited to the normal and extended views. If a v..."New value: +"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). Users without read permissions to Directory are limited to the normal and extended views. If a v..." - changed
Input schema / properties / work_classification_id / descriptionPrevious value: -"The unique identifier for the work classification of the Project Person."New value: +"JSON request body field — the unique identifier for the work classification of the Project Person."
- Changed
create_project_region2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Project Region"New value: +"JSON request body field — the Name of the Project Region"
- Changed
create_project_role2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / project_role / descriptionPrevious value: -"project_role"New value: +"JSON request body field — the project role for this Project operation"
- Changed
create_project_segment_item6 fields changed- changed
Input schema / properties / code / descriptionPrevious value: -"Segment Item Code"New value: +"JSON request body field — segment Item Code" - changed
Input schema / properties / name / descriptionPrevious value: -"Segment Item Name"New value: +"JSON request body field — segment Item Name" - changed
Input schema / properties / parent_id / descriptionPrevious value: -"Parent ID"New value: +"JSON request body field — unique identifier of the parent" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / segment_id / descriptionPrevious value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment" - changed
Input schema / properties / sub_job_id / descriptionPrevious value: -"Required to create a legacy cost code for a specific sub job"New value: +"JSON request body field — required to create a legacy cost code for a specific sub job"
- Changed
create_project_stage4 fields changed- changed
Input schema / properties / category / descriptionPrevious value: -"The Category Type of the Project Stage"New value: +"JSON request body field — the Category Type of the Project Stage" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / is_bidding_stage / descriptionPrevious value: -"The Bidding Stage status of the Project Stage"New value: +"JSON request body field — the Bidding Stage status of the Project Stage" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Project Stage"New value: +"JSON request body field — the Name of the Project Stage"
- Added
create_project_task_company - Added
create_project_task_company_v2_0 - Removed
create_project_task_v2_0_company - Removed
create_project_task_v2_0_company_v2_0 - Changed
create_project_type2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Project Type"New value: +"JSON request body field — the Name of the Project Type"
- Changed
create_project_upload7 fields changed- changed
Input schema / properties / attachment_content_disposition / descriptionPrevious value: -"The content type set through this parameter will be used by the storage system during download, similar to the response_filename. When set to true, the file will be downloaded as an attachment. Oth..."New value: +"JSON request body field — the content type set through this parameter will be used by the storage system during download, similar to the response_filename. When set to true, the file will be downloaded as an attachment. Oth..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / response_content_type / descriptionPrevious value: -"The content-type set through this parameter will be used by the storage\nservice during download just like the response_filename. Setting this\nvalue is less important because HTTP clients and operat..."New value: +"JSON request body field — the content-type set through this parameter will be used by the storage\nservice during download just like the response_filename. Setting this\nvalue is less important because HTTP clients and operat..." - changed
Input schema / properties / response_filename / descriptionPrevious value: -"By setting a filename you ensure that the storage service knows the\nfilename of the upload. Files are often downloaded directly from the\nstorage service and without the filename they will save on t..."New value: +"JSON request body field — by setting a filename you ensure that the storage service knows the\nfilename of the upload. Files are often downloaded directly from the\nstorage service and without the filename they will save on t..." - changed
Input schema / properties / segments / descriptionPrevious value: -"Upload segments"New value: +"JSON request body field — upload segments" - changed
Input schema / properties / size / descriptionPrevious value: -"File size in bytes"New value: +"JSON request body field — file size in bytes" - changed
Input schema / requiredPrevious value: -[ - "project_id" -]New value: +[ + "project_id", + "response_filename" +]
- Removed
create_project_upload_v1_1 - Changed
create_project_user24 fields changed- changed
Input schema / properties / address / descriptionPrevious value: -"The street Address of the Project User"New value: +"JSON request body field — the street Address of the Project User" - changed
Input schema / properties / avatar / descriptionPrevious value: -"Project User Avatar.\nTo upload avatar you must upload whole payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `user[avatar]` as file."New value: +"JSON request body field — project User Avatar.\nTo upload avatar you must upload whole payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `user[avatar]` as file." - changed
Input schema / properties / business_phone / descriptionPrevious value: -"The Business Phone number of the Project User"New value: +"JSON request body field — the Business Phone number of the Project User" - changed
Input schema / properties / business_phone_extension / descriptionPrevious value: -"The Business Phone Extension of the Project User"New value: +"JSON request body field — the Business Phone Extension of the Project User" - changed
Input schema / properties / city / descriptionPrevious value: -"The City in which the Project User resides"New value: +"JSON request body field — the City in which the Project User resides" - changed
Input schema / properties / country_code / descriptionPrevious value: -"The Country Code of the Project User (ISO-3166 Alpha-2 format)"New value: +"JSON request body field — the Country Code of the Project User (ISO-3166 Alpha-2 format)" - changed
Input schema / properties / email_address / descriptionPrevious value: -"The Email Address of the Project User"New value: +"JSON request body field — the Email Address of the Project User" - changed
Input schema / properties / email_signature / descriptionPrevious value: -"The Email Signature of the Project User"New value: +"JSON request body field — the Email Signature of the Project User" - changed
Input schema / properties / employee_id / descriptionPrevious value: -"The Employee ID of the Project User"New value: +"JSON request body field — the Employee ID of the Project User" - changed
Input schema / properties / fax_number / descriptionPrevious value: -"The Fax Number of the Project User"New value: +"JSON request body field — the Fax Number of the Project User" - changed
Input schema / properties / first_name / descriptionPrevious value: -"The First Name of the Project User"New value: +"JSON request body field — the First Name of the Project User" - changed
Input schema / properties / initials / descriptionPrevious value: -"The Initials of the Project User"New value: +"JSON request body field — the Initials of the Project User" - changed
Input schema / properties / is_active / descriptionPrevious value: -"The Active status of the Project User"New value: +"JSON request body field — the Active status of the Project User" - changed
Input schema / properties / is_employee / descriptionPrevious value: -"The Employee status of the Project User"New value: +"JSON request body field — the Employee status of the Project User" - changed
Input schema / properties / job_title / descriptionPrevious value: -"The Job Title of the Project User"New value: +"JSON request body field — the Job Title of the Project User" - changed
Input schema / properties / last_name / descriptionPrevious value: -"The Last Name of the Project User"New value: +"JSON request body field — the Last Name of the Project User" - changed
Input schema / properties / mobile_phone / descriptionPrevious value: -"The Mobile Phone number of the Project User"New value: +"JSON request body field — the Mobile Phone number of the Project User" - changed
Input schema / properties / notes / descriptionPrevious value: -"The Notes (notes/keywords/tags) of the Project User"New value: +"JSON request body field — the Notes (notes/keywords/tags) of the Project User" - changed
Input schema / properties / permission_template_id / descriptionPrevious value: -"The Permission Template ID of the Project User"New value: +"JSON request body field — the Permission Template ID of the Project User" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / state_code / descriptionPrevious value: -"The State Code of the Project User (ISO-3166 Alpha-2 format)"New value: +"JSON request body field — the State Code of the Project User (ISO-3166 Alpha-2 format)" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"The Vendor ID of the Project User"New value: +"JSON request body field — the Vendor ID of the Project User" - changed
Input schema / properties / zip / descriptionPrevious value: -"The Zip Code of the Project User"New value: +"JSON request body field — the Zip Code of the Project User"
- Changed
create_project_vendor30 fields changed- changed
Input schema / properties / abbreviated_name / descriptionPrevious value: -"Abbreviated name"New value: +"JSON request body field — the abbreviated name for this Directory operation" - changed
Input schema / properties / address / descriptionPrevious value: -"Street address"New value: +"JSON request body field — street address" - changed
Input schema / properties / authorized_bidder / descriptionPrevious value: -"Authorized bidder status"New value: +"JSON request body field — authorized bidder status" - changed
Input schema / properties / business_phone / descriptionPrevious value: -"Business phone number"New value: +"JSON request body field — business phone number" - changed
Input schema / properties / city / descriptionPrevious value: -"City"New value: +"JSON request body field — the city for this Directory operation" - changed
Input schema / properties / country_code / descriptionPrevious value: -"Country code (ISO-3166 Alpha-2 format)"New value: +"JSON request body field — country code (ISO-3166 Alpha-2 format)" - changed
Input schema / properties / email_address / descriptionPrevious value: -"Email address"New value: +"JSON request body field — the email address for this Directory operation" - changed
Input schema / properties / fax_number / descriptionPrevious value: -"Fax number"New value: +"JSON request body field — the fax number for this Directory operation" - changed
Input schema / properties / is_active / descriptionPrevious value: -"Active status"New value: +"JSON request body field — active status" - changed
Input schema / properties / labor_union / descriptionPrevious value: -"Labor union"New value: +"JSON request body field — the labor union for this Directory operation" - changed
Input schema / properties / license_number / descriptionPrevious value: -"License number"New value: +"JSON request body field — the license number for this Directory operation" - changed
Input schema / properties / mobile_phone / descriptionPrevious value: -"Mobile phone number"New value: +"JSON request body field — mobile phone number" - changed
Input schema / properties / name / descriptionPrevious value: -"Name"New value: +"JSON request body field — the name for this Directory operation" - changed
Input schema / properties / non_union_prevailing_wage / descriptionPrevious value: -"Non union prevailing wage status"New value: +"JSON request body field — non union prevailing wage status" - changed
Input schema / properties / notes / descriptionPrevious value: -"Notes (notes/keywords/tags)"New value: +"JSON request body field — notes (notes/keywords/tags)" - changed
Input schema / properties / origin_code / descriptionPrevious value: -"Origin Code"New value: +"JSON request body field — the origin code for this Directory operation" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"Origin Data"New value: +"JSON request body field — the origin data for this Directory operation" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin" - changed
Input schema / properties / parent_id / descriptionPrevious value: -"Parent Vendor ID. Cannot be the same as ID. Only two levels of hierarchy are supported (parent/child)."New value: +"JSON request body field — parent Vendor ID. Cannot be the same as ID. Only two levels of hierarchy are supported (parent/child)." - changed
Input schema / properties / prequalified / descriptionPrevious value: -"Prequalified status"New value: +"JSON request body field — prequalified status" - changed
Input schema / properties / primary_contact_id / descriptionPrevious value: -"Primary Contact ID"New value: +"JSON request body field — unique identifier of the primary contact" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / state_code / descriptionPrevious value: -"State code (ISO-3166 Alpha-2 format)"New value: +"JSON request body field — state code (ISO-3166 Alpha-2 format)" - changed
Input schema / properties / trade_name / descriptionPrevious value: -"Vendor's Trade Name, also known as Doing Business As (DBA)."New value: +"JSON request body field — vendor's Trade Name, also known as Doing Business As (DBA)." - changed
Input schema / properties / union_member / descriptionPrevious value: -"Union member status"New value: +"JSON request body field — union member status" - changed
Input schema / properties / view / descriptionPrevious value: -"The normal view provides what is shown below.\nThe extended view is the same as the normal view but includes children_count, legal_name, parent, and bidding.\nThe default view is normal."New value: +"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). The default view is normal." - changed
Input schema / properties / view / enumPrevious value: -[ - "normal", - "extended" -]New value: +[ + "extended", + "normal" +] - changed
Input schema / properties / website / descriptionPrevious value: -"Website url"New value: +"JSON request body field — website url" - changed
Input schema / properties / zip / descriptionPrevious value: -"Zip code"New value: +"JSON request body field — postal/ZIP code"
- Changed
create_project_vendor_insurance18 fields changed- changed
Input schema / properties / additional_insured / descriptionPrevious value: -"Additional Individuals and/or Companies Insured"New value: +"JSON request body field — additional Individuals and/or Companies Insured" - changed
Input schema / properties / division_template / descriptionPrevious value: -"Division Template"New value: +"JSON request body field — the division template for this Directory operation" - changed
Input schema / properties / effective_date / descriptionPrevious value: -"Effective date"New value: +"JSON request body field — the effective date in YYYY-MM-DD format" - changed
Input schema / properties / enable_expired_insurance_notifications / descriptionPrevious value: -"Enable/Disable expired insurance notifications"New value: +"JSON request body field — enable/Disable expired insurance notifications" - changed
Input schema / properties / exempt / descriptionPrevious value: -"Exempt status"New value: +"JSON request body field — exempt status" - changed
Input schema / properties / expiration_date / descriptionPrevious value: -"Expiration date"New value: +"JSON request body field — the expiration date in YYYY-MM-DD format" - changed
Input schema / properties / info_received / descriptionPrevious value: -"Information received (or not)"New value: +"JSON request body field — information received (or not)" - changed
Input schema / properties / insurance_sets / descriptionPrevious value: -"Insurance Sets"New value: +"JSON request body field — the insurance sets for this Directory operation" - changed
Input schema / properties / insurance_type / descriptionPrevious value: -"Insurance type"New value: +"JSON request body field — the insurance type for this Directory operation" - changed
Input schema / properties / limit / descriptionPrevious value: -"Limit"New value: +"JSON request body field — the limit for this Directory operation" - changed
Input schema / properties / name / descriptionPrevious value: -"Provider name"New value: +"JSON request body field — provider name" - changed
Input schema / properties / notes / descriptionPrevious value: -"Notes"New value: +"JSON request body field — the notes for this Directory operation" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"Origin data"New value: +"JSON request body field — the origin data for this Directory operation" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin" - changed
Input schema / properties / policy_number / descriptionPrevious value: -"Policy number"New value: +"JSON request body field — the policy number for this Directory operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Directory operation" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
- Removed
create_project_vendor_v1_1 - Added
create_project_webhooks_hook - Removed
create_project_webhooks_hook_v2_0 - Added
create_project_webhooks_triggers - Removed
create_project_webhooks_triggers_v2_0 - Changed
create_property_damage9 fields changed- changed
Input schema / properties / affected_company_id / descriptionPrevious value: -"The ID of the Affected Company"New value: +"JSON request body field — the ID of the Affected Company" - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"Description of event in Rich Text format"New value: +"JSON request body field — description of event in Rich Text format" - changed
Input schema / properties / estimated_cost_impact / descriptionPrevious value: -"Estimated cost impact of the record"New value: +"JSON request body field — estimated cost impact of the record" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"The ID of the Incident"New value: +"JSON request body field — the ID of the Incident" - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"The ID of the Managed Equipment"New value: +"JSON request body field — the ID of the Managed Equipment" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / responsible_company_id / descriptionPrevious value: -"The ID of the Responsible Company"New value: +"JSON request body field — the ID of the Responsible Company" - changed
Input schema / properties / work_activity_id / descriptionPrevious value: -"The ID of the Work Activity"New value: +"JSON request body field — the ID of the Work Activity"
- Changed
create_punch_item4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Punch Item Assignment attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[..."New value: +"JSON request body field — punch Item Assignment attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Project ID to which the Punch Item belongs to"New value: +"JSON request body field — project ID to which the Punch Item belongs to" - changed
Input schema / properties / punch_item / descriptionPrevious value: -"punch_item"New value: +"JSON request body field — the punch item for this Punch List operation" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
create_punch_item_comment4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / comment / descriptionPrevious value: -"comment"New value: +"JSON request body field — the comment for this Punch List operation" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Punch Item"New value: +"URL path parameter — iD of the Punch Item" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
create_punch_item_type2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Punch Item Type belongs to"New value: +"JSON request body field — the ID of the Project the Punch Item Type belongs to" - changed
Input schema / properties / punch_item_type / descriptionPrevious value: -"punch_item_type"New value: +"JSON request body field — the punch item type for this Punch List operation"
- Removed
create_punch_item_v1_1 - Changed
create_purchase_order_contract4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Purchase Order Contract attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachment..."New value: +"JSON request body field — purchase Order Contract attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachment..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / purchase_order_contract / descriptionPrevious value: -"Purchase Order Contract object"New value: +"JSON request body field — purchase Order Contract object" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
create_purchase_order_contract_detail_line_item3 fields changed- changed
Input schema / properties / contract_detail_line_item / descriptionPrevious value: -"The Detail Line Item object"New value: +"JSON request body field — the Detail Line Item object" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / purchase_order_contract_id / descriptionPrevious value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
- Changed
create_purchase_order_contract_line_item3 fields changed- changed
Input schema / properties / line_item / descriptionPrevious value: -"The Line Item object"New value: +"JSON request body field — the Line Item object" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / purchase_order_contract_id / descriptionPrevious value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
- Changed
create_quantity_log3 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Quantity Log Attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — quantity Log Attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity_log / descriptionPrevious value: -"quantity_log"New value: +"JSON request body field — the quantity log for this Daily Log operation"
- Added
create_reinspections - Removed
create_reinspections_v2_0 - Added
create_requested_change - Removed
create_requested_change_v1_1 - Changed
create_requisition_subcontractor_invoices_for_commitment6 fields changed- removed
Input schema / properties / attachmentsRemoved value: -{ - "description": "Requisition (Subcontractor Invoice) attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with...", - "items": {}, - "type": "array" -} - changed
Input schema / properties / commitment_id / descriptionPrevious value: -"Commitment ID"New value: +"JSON request body field — unique identifier of the commitment" - added
Input schema / properties / invite_idAdded value: +{ + "description": "Query string parameter — unique identifier for the invite to associate with the requisition.", + "type": "number" +} - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the Procore project" - changed
Input schema / properties / requisition / descriptionPrevious value: -"Requisition (Subcontractor Invoice)"New value: +"JSON request body field — requisition (Subcontractor Invoice)" - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — specifies which view (which attributes) of the resource is going to be present in the response.", + "enum": [ + "default", + "extended", + "items", + "action_policy" + ], + "type": "string" +}
- Removed
create_requisition_subcontractor_invoices_for_commitment_v1_1 - Removed
create_resource - Added
create_resource_project - Added
create_resource_v1_0 - Removed
create_resource_v1_1 - Changed
create_rfi28 fields changed- changed
Input schema / properties / assignee_id / descriptionPrevious value: -"The ID of the Assignee User.\n*Only admin users can set this field\nDEPRECATED. Please use assignee_ids instead"New value: +"JSON request body field — the ID of the Assignee User.\n*Only admin users can set this field\nDEPRECATED. Please use assignee_ids instead" - changed
Input schema / properties / assignee_ids / descriptionPrevious value: -"An array of IDs of the Assignees of the RFI\n*Only admin users can set this field\n**If this param is not provided, the assigned_id will be used instead"New value: +"JSON request body field — an array of IDs of the Assignees of the RFI\n*Only admin users can set this field\n**If this param is not provided, the assigned_id will be used instead" - changed
Input schema / properties / cost_code_id / descriptionPrevious value: -"The ID of the Cost Code of the RFI"New value: +"JSON request body field — the ID of the Cost Code of the RFI" - changed
Input schema / properties / cost_impact / descriptionPrevious value: -"The Cost Impact of the RFI"New value: +"JSON request body field — the Cost Impact of the RFI" - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / custom_textfield_1 / descriptionPrevious value: -"The Custom Textfield 1 of the RFI"New value: +"JSON request body field — the Custom Textfield 1 of the RFI" - changed
Input schema / properties / custom_textfield_2 / descriptionPrevious value: -"The Custom Textfield 2 of the RFI"New value: +"JSON request body field — the Custom Textfield 2 of the RFI" - changed
Input schema / properties / distribution_ids / descriptionPrevious value: -"An array of IDs of the Distributions of the RFI"New value: +"JSON request body field — an array of IDs of the Distributions of the RFI" - changed
Input schema / properties / draft / descriptionPrevious value: -"The Draft status of the RFI"New value: +"JSON request body field — the Draft status of the RFI" - changed
Input schema / properties / drawing_number / descriptionPrevious value: -"The Drawing Number of the RFI"New value: +"JSON request body field — the Drawing Number of the RFI" - changed
Input schema / properties / due_date / descriptionPrevious value: -"The Due Date of the RFI\n*Only admin users can set this field"New value: +"JSON request body field — the Due Date of the RFI\n*Only admin users can set this field" - changed
Input schema / properties / location_id / descriptionPrevious value: -"The ID of the Location of the RFI"New value: +"JSON request body field — the ID of the Location of the RFI" - changed
Input schema / properties / number / descriptionPrevious value: -"The Number of the RFI\n*This field will be auto-populated if the RFI is not draft\n**When creating a new revision of an RFI, if not provided, it will inherit the number from the source RFI."New value: +"JSON request body field — the Number of the RFI\n*This field will be auto-populated if the RFI is not draft\n**When creating a new revision of an RFI, if not provided, it will inherit the number from the source RFI." - changed
Input schema / properties / private / descriptionPrevious value: -"The Private status of the RFI"New value: +"JSON request body field — the Private status of the RFI" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / project_stage_id / descriptionPrevious value: -"The ID of the Project Stage of the RFI\n*If Number By Stage is enabled in RFI settings, this will add the prefix of the project stage to the full number of the RFI.\n**This field is not needed when c..."New value: +"JSON request body field — the ID of the Project Stage of the RFI\n*If Number By Stage is enabled in RFI settings, this will add the prefix of the project stage to the full number of the RFI.\n**This field is not needed when c..." - changed
Input schema / properties / question / descriptionPrevious value: -"The Question of the RFI"New value: +"JSON request body field — the Question of the RFI" - changed
Input schema / properties / received_from_login_information_id / descriptionPrevious value: -"The ID of the Received From User of the RFI"New value: +"JSON request body field — the ID of the Received From User of the RFI" - changed
Input schema / properties / reference / descriptionPrevious value: -"The Reference of the RFI"New value: +"JSON request body field — the Reference of the RFI" - changed
Input schema / properties / required_assignee_ids / descriptionPrevious value: -"An array of IDs of the Assignees that are required to respond to the RFI * Only admin users can set this field ** IDs must also be present in assignee_ids\n"New value: +"JSON request body field — an array of IDs of the Assignees that are required to respond to the RFI * Only admin users can set this field ** IDs must also be present in assignee_ids\n" - changed
Input schema / properties / responsible_contractor_id / descriptionPrevious value: -"The ID of the Responsible Contractor Vendor of the RFI"New value: +"JSON request body field — the ID of the Responsible Contractor Vendor of the RFI" - changed
Input schema / properties / revision / descriptionPrevious value: -"Revision Number\n*This field is required only when creating a new revision of an RFI. "New value: +"JSON request body field — revision Number\n*This field is required only when creating a new revision of an RFI. " - changed
Input schema / properties / rfi_manager_id / descriptionPrevious value: -"The ID of the RFI Manager User of the RFI\n*Only admin users (or standard users, if the project's configuration allows for it) can set this field"New value: +"JSON request body field — the ID of the RFI Manager User of the RFI\n*Only admin users (or standard users, if the project's configuration allows for it) can set this field" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / schedule_impact / descriptionPrevious value: -"The Schedule Impact of the RFI"New value: +"JSON request body field — the Schedule Impact of the RFI" - changed
Input schema / properties / source_rfi_header_id / descriptionPrevious value: -"The ID of The Root RFI Revision\n*This field is required only when creating a new revision of an RFI."New value: +"JSON request body field — the ID of The Root RFI Revision\n*This field is required only when creating a new revision of an RFI." - changed
Input schema / properties / specification_section_id / descriptionPrevious value: -"The ID of the Specification Section of the RFI"New value: +"JSON request body field — the ID of the Specification Section of the RFI" - changed
Input schema / properties / subject / descriptionPrevious value: -"The Subject of the RFI"New value: +"JSON request body field — the Subject of the RFI"
- Changed
create_rfi_reply4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"RFI Response Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — rFI Response Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / reply / descriptionPrevious value: -"reply"New value: +"JSON request body field — the reply for this RFI operation" - changed
Input schema / properties / rfi_id / descriptionPrevious value: -"RFI ID"New value: +"URL path parameter — unique identifier of the rfi"
- Changed
create_rfq3 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / rfq / descriptionPrevious value: -"rfq"New value: +"JSON request body field — the rfq for this Commitments operation"
- Changed
create_rfq_quote4 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / rfq_id / descriptionPrevious value: -"RFQ ID"New value: +"URL path parameter — unique identifier of the rfq" - changed
Input schema / properties / rfq_quote / descriptionPrevious value: -"rfq_quote"New value: +"JSON request body field — the rfq quote for this Commitments operation"
- Changed
create_rfq_response4 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / rfq_id / descriptionPrevious value: -"RFQ ID"New value: +"URL path parameter — unique identifier of the rfq" - changed
Input schema / properties / rfq_response / descriptionPrevious value: -"rfq_response"New value: +"JSON request body field — the rfq response for this Commitments operation"
- Changed
create_rounding_configuration3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / rule / descriptionPrevious value: -"Rule to apply to rounding. Options are 'up', 'down', 'nearest', and 'favor_employee'"New value: +"JSON request body field — rule to apply to rounding. Options are 'up', 'down', 'nearest', and 'favor_employee'" - changed
Input schema / properties / time_increment / descriptionPrevious value: -"Time increment available for Timecard Entries. Options are 5, 6, 10, and 15"New value: +"JSON request body field — time increment available for Timecard Entries. Options are 5, 6, 10, and 15"
- Changed
create_safety_violation_log3 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Safety Violation Log Attachments are not viewable or used on web.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-d..."New value: +"JSON request body field — safety Violation Log Attachments are not viewable or used on web.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-d..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / safety_violation_log / descriptionPrevious value: -"safety_violation_log"New value: +"JSON request body field — safety_violation_log"
- Changed
create_signature_for_time_and_material_entry5 fields changed- changed
Input schema / properties / data / descriptionPrevious value: -"Attachment representing the Signature.\nTo upload an attachment, you must upload the entire payload as `multipart/form-data` content-type\nand specify each parameter as form-data together with `data`..."New value: +"JSON request body field — attachment representing the Signature.\nTo upload an attachment, you must upload the entire payload as `multipart/form-data` content-type\nand specify each parameter as form-data together with `data`..." - changed
Input schema / properties / party_id / descriptionPrevious value: -"ID of the party the signature is attributed to"New value: +"JSON request body field — iD of the party the signature is attributed to" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / signature_text / descriptionPrevious value: -"Acknowedgement text the signature was signed against."New value: +"JSON request body field — acknowedgement text the signature was signed against." - changed
Input schema / properties / upload_id / descriptionPrevious value: -"Signature Upload ID"New value: +"JSON request body field — unique identifier of the upload"
- Changed
create_signature_for_timesheet_company5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / data / descriptionPrevious value: -"Attachment representing the Signature.\nTo upload an attachment, you must upload the entire payload as `multipart/form-data` content-type\nand specify each parameter as form-data together with `data`..."New value: +"JSON request body field — attachment representing the Signature.\nTo upload an attachment, you must upload the entire payload as `multipart/form-data` content-type\nand specify each parameter as form-data together with `data`..." - changed
Input schema / properties / signature_text / descriptionPrevious value: -"Acknowedgement text the signature was signed against."New value: +"JSON request body field — acknowedgement text the signature was signed against." - changed
Input schema / properties / upload_id / descriptionPrevious value: -"Signature Upload ID"New value: +"JSON request body field — unique identifier of the upload" - changed
Input schema / properties / user_id / descriptionPrevious value: -"ID of the user the signature is attributed to"New value: +"JSON request body field — iD of the user the signature is attributed to"
- Changed
create_signature_for_timesheet_project4 fields changed- changed
Input schema / properties / data / descriptionPrevious value: -"Attachment representing the Signature.\nTo upload an attachment, you must upload the entire payload as `multipart/form-data` content-type\nand specify each parameter as form-data together with `data`..."New value: +"JSON request body field — attachment representing the Signature.\nTo upload an attachment, you must upload the entire payload as `multipart/form-data` content-type\nand specify each parameter as form-data together with `data`..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / signature_text / descriptionPrevious value: -"Acknowedgement text the signature was signed against."New value: +"JSON request body field — acknowedgement text the signature was signed against." - changed
Input schema / properties / user_id / descriptionPrevious value: -"ID of the user the signature is attributed to"New value: +"JSON request body field — iD of the user the signature is attributed to"
- Added
create_specification_area - Removed
create_specification_area_v2_1 - Changed
create_specification_section_division_for_a_project3 fields changed- changed
Input schema / properties / description / descriptionPrevious value: -"description"New value: +"JSON request body field — the description for this Specifications operation" - changed
Input schema / properties / number / descriptionPrevious value: -"number"New value: +"JSON request body field — the number for this Specifications operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
create_specification_section_for_a_project4 fields changed- changed
Input schema / properties / description / descriptionPrevious value: -"description"New value: +"JSON request body field — the description for this Specifications operation" - changed
Input schema / properties / number / descriptionPrevious value: -"number"New value: +"JSON request body field — the number for this Specifications operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / specification_section_division_id / descriptionPrevious value: -"The ID of the parent Specification Section Division"New value: +"JSON request body field — the ID of the parent Specification Section Division"
- Changed
create_specification_set3 fields changed- changed
Input schema / properties / date / descriptionPrevious value: -"Creation date of specification set"New value: +"JSON request body field — creation date of specification set" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of specification set"New value: +"JSON request body field — name of specification set" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the project for the new set"New value: +"URL path parameter — the ID of the project for the new set"
- Changed
create_specification_upload10 fields changed- changed
Input schema / properties / default_revision / descriptionPrevious value: -"A default revision designation to be applied to Specification Section Revisions generated from this upload"New value: +"JSON request body field — a default revision designation to be applied to Specification Section Revisions generated from this upload" - changed
Input schema / properties / files / descriptionPrevious value: -"One or more files in PDF format to include in the upload (limited to one if specification_section_id is set).\n*To upload drawings you must upload the entire payload as `multipart/form-data` content..."New value: +"JSON request body field — one or more files in PDF format to include in the upload (limited to one if specification_section_id is set).\n*To upload drawings you must upload the entire payload as `multipart/form-data` content..." - changed
Input schema / properties / ignore_number / descriptionPrevious value: -"Numbers that resemble a spec section number can make it difficult to accurately split up and auto-label the spec sections. This field contains a number flagged to be ignored by the OCR technology a..."New value: +"JSON request body field — numbers that resemble a spec section number can make it difficult to accurately split up and auto-label the spec sections. This field contains a number flagged to be ignored by the OCR technology a..." - changed
Input schema / properties / issued_date / descriptionPrevious value: -"The date when the specifications were issued by the design team"New value: +"JSON request body field — the date when the specifications were issued by the design team" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the project to upload to"New value: +"URL path parameter — the ID of the project to upload to" - changed
Input schema / properties / received_date / descriptionPrevious value: -"The date when the specifications were received by the GC"New value: +"JSON request body field — the date when the specifications were received by the GC" - changed
Input schema / properties / spec_format / descriptionPrevious value: -"Specification format to apply to the upload."New value: +"JSON request body field — specification format to apply to the upload." - changed
Input schema / properties / specification_section_id / descriptionPrevious value: -"The ID of a Specification Section to apply to all pages in the attached file.\nIf present, the upload will not require review unless the Specification Section is deleted during processing."New value: +"JSON request body field — the ID of a Specification Section to apply to all pages in the attached file.\nIf present, the upload will not require review unless the Specification Section is deleted during processing." - changed
Input schema / properties / specification_set_id / descriptionPrevious value: -"The ID of the specification set to upload to"New value: +"JSON request body field — the ID of the specification set to upload to" - changed
Input schema / properties / upload_uuids / descriptionPrevious value: -"Array of uploaded files UUIDs.\n*Required only if files is empty"New value: +"JSON request body field — array of uploaded files UUIDs.\n*Required only if files is empty"
- Changed
create_standard_cost_code4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company" - changed
Input schema / properties / standard_cost_code / descriptionPrevious value: -"standard_cost_code"New value: +"JSON request body field — the standard cost code for this Work Breakdown Structure operation" - changed
Input schema / properties / standard_cost_code_list_id / descriptionPrevious value: -"Standard Cost Code List ID"New value: +"JSON request body field — standard Cost Code List ID" - changed
Input schema / properties / view / descriptionPrevious value: -"The 'default' view only returns id and standard_cost_code_list_id. The 'compact' view also includes\norigin_id. The 'extended' view includes the more complete list of attributes shown below. The 'ex..."New value: +"Query string parameter — the 'default' view only returns id and standard_cost_code_list_id. The 'compact' view also includes\norigin_id. The 'extended' view includes the more complete list of attributes shown below. The 'ex..."
- Changed
create_standard_cost_code_list2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"JSON request body field — unique identifier for the company." - changed
Input schema / properties / standard_cost_code_list / descriptionPrevious value: -"standard_cost_code_list"New value: +"JSON request body field — standard_cost_code_list"
- Changed
create_sub_job2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / sub_job / descriptionPrevious value: -"sub_job"New value: +"JSON request body field — the sub job for this Work Breakdown Structure operation"
- Changed
create_submittal34 fields changed- changed
Input schema / properties / actual_delivery_date / descriptionPrevious value: -"The Actual Delivery Date of the Submittal\n*This field can only be set if the project has submittal delivery information enabled"New value: +"JSON request body field — the Actual Delivery Date of the Submittal\n*This field can only be set if the project has submittal delivery information enabled" - added
Input schema / properties / attachmentsAdded value: +{ + "description": "JSON request body field — submittal attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]` as files.", + "items": {}, + "type": "array" +} - changed
Input schema / properties / confirmed_delivery_date / descriptionPrevious value: -"The Confirmed Delivery Date of the Submittal\n*This field can only be set if the project has submittal delivery information enabled"New value: +"JSON request body field — the Confirmed Delivery Date of the Submittal\n*This field can only be set if the project has submittal delivery information enabled" - changed
Input schema / properties / cost_code_id / descriptionPrevious value: -"The ID of the Cost Code of the Submittal\n*This field can only be set by admins"New value: +"JSON request body field — the ID of the Cost Code of the Submittal\n*This field can only be set by admins" - changed
Input schema / properties / custom_textarea_1 / descriptionPrevious value: -"*This field can only be set by admins"New value: +"JSON request body field — *This field can only be set by admins\n" - changed
Input schema / properties / custom_textfield_1 / descriptionPrevious value: -"*This field can only be set by admins"New value: +"JSON request body field — *This field can only be set by admins\n" - changed
Input schema / properties / description / descriptionPrevious value: -"The Description of the Submittal"New value: +"JSON request body field — the Description of the Submittal" - changed
Input schema / properties / design_team_review_time / descriptionPrevious value: -"The Design Team Review Time of the Submittal (in days)\n*This field can only be set if the project has schedule calculations enabled"New value: +"JSON request body field — the Design Team Review Time of the Submittal (in days)\n*This field can only be set if the project has schedule calculations enabled" - changed
Input schema / properties / distribution_member_ids / descriptionPrevious value: -"The IDs of the Distribution Members of the Submittal"New value: +"JSON request body field — the IDs of the Distribution Members of the Submittal" - changed
Input schema / properties / due_date / descriptionPrevious value: -"The Due Date of the Submittal\n*This field is not available to be set if sequential approvers is enabled"New value: +"JSON request body field — the Due Date of the Submittal\n*This field is not available to be set if sequential approvers is enabled" - changed
Input schema / properties / internal_review_time / descriptionPrevious value: -"The Internal Review Time of the Submtital (in days)\n*This field can only be set if the project has schedule calculations enabled"New value: +"JSON request body field — the Internal Review Time of the Submtital (in days)\n*This field can only be set if the project has schedule calculations enabled" - changed
Input schema / properties / issue_date / descriptionPrevious value: -"The Issue Date of the Submittal\n*This field can only be set by admins"New value: +"JSON request body field — the Issue Date of the Submittal\n*This field can only be set by admins" - changed
Input schema / properties / lead_time / descriptionPrevious value: -"The Lead Time of the Submittal (in days)\n*This field can only be set by admins or if the project has schedule calculations enabled"New value: +"JSON request body field — the Lead Time of the Submittal (in days)\n*This field can only be set by admins or if the project has schedule calculations enabled" - changed
Input schema / properties / location_id / descriptionPrevious value: -"The Location of the Submittal"New value: +"JSON request body field — the Location of the Submittal" - changed
Input schema / properties / number / descriptionPrevious value: -"The Number of the Submittal"New value: +"JSON request body field — the Number of the Submittal" - changed
Input schema / properties / private / descriptionPrevious value: -"Whether the Submittal is Private or not"New value: +"JSON request body field — whether the Submittal is Private or not" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - added
Input schema / properties / prostore_file_idsAdded value: +{ + "description": "JSON request body field — an array of Prostore File IDs. The Prostore Files will be associated with the Submittal as attachments.", + "items": {}, + "type": "array" +} - changed
Input schema / properties / received_date / descriptionPrevious value: -"The Received Date of the Submittal\n*This field can only be set by admins"New value: +"JSON request body field — the Received Date of the Submittal\n*This field can only be set by admins" - changed
Input schema / properties / received_from_id / descriptionPrevious value: -"The Received From of the Submittal"New value: +"JSON request body field — the Received From of the Submittal" - changed
Input schema / properties / required_on_site_date / descriptionPrevious value: -"The Required On Site Date of the Submittal\n*This field can only be set by admins or if the project has schedule calculations enabled"New value: +"JSON request body field — the Required On Site Date of the Submittal\n*This field can only be set by admins or if the project has schedule calculations enabled" - changed
Input schema / properties / responsible_contractor_id / descriptionPrevious value: -"The Responsible Contractor of the Submittal"New value: +"JSON request body field — the Responsible Contractor of the Submittal" - changed
Input schema / properties / revision / descriptionPrevious value: -"The Revision of the Submittal"New value: +"JSON request body field — the Revision of the Submittal" - changed
Input schema / properties / scheduled_task_id / descriptionPrevious value: -"The ID of the Scheduled Task of the Submittal\n*This field can only be set if the project has submittal delivery information enabled and the user has permissions to view the calendar tool"New value: +"JSON request body field — the ID of the Scheduled Task of the Submittal\n*This field can only be set if the project has submittal delivery information enabled and the user has permissions to view the calendar tool" - changed
Input schema / properties / scheduled_task_key / descriptionPrevious value: -"The key of the Scheduled Task of the Submittal. Note that use of this parameter is deprecated. Please use `scheduled_task_id` instead.\n*This field can only be set if the project has submittal deliv..."New value: +"JSON request body field — the key of the Scheduled Task of the Submittal. Note that use of this parameter is deprecated. Please use `scheduled_task_id` instead.\n*This field can only be set if the project has submittal deliv..." - changed
Input schema / properties / send_emails / descriptionPrevious value: -"Designates whether or not emails will be sent (default false)"New value: +"Query string parameter — designates whether or not emails will be sent (default false)" - added
Input schema / properties / source_submittal_log_idAdded value: +{ + "description": "JSON request body field — the ID of the Source Submittal.\n*By setting this field, the submittal will be created as a revision of source submittal.", + "type": "number" +} - changed
Input schema / properties / specification_section_id / descriptionPrevious value: -"The ID of the Specification Section of the Submittal"New value: +"JSON request body field — the ID of the Specification Section of the Submittal" - changed
Input schema / properties / status_id / descriptionPrevious value: -"The ID of the Submittal Status of the Submittal\n*This field can only be set by admins"New value: +"JSON request body field — the ID of the Submittal Status of the Submittal\n*This field can only be set by admins" - changed
Input schema / properties / sub_job_id / descriptionPrevious value: -"The ID of the Sub Job of the Submittal"New value: +"JSON request body field — the ID of the Sub Job of the Submittal" - changed
Input schema / properties / submit_by / descriptionPrevious value: -"The Submit By Date of the Submittal\n*This field can only be set by admins"New value: +"JSON request body field — the Submit By Date of the Submittal\n*This field can only be set by admins" - removed
Input schema / properties / submittal_manager_idRemoved value: -{ - "description": "The ID of the Submittal Manager of the Submittal\n*This field can only be set by admins", - "type": "number" -} - removed
Input schema / properties / submittal_package_idRemoved value: -{ - "description": "The ID of the Submittal Package of the Submittal\n*This field can only be set by admins", - "type": "number" -} - removed
Input schema / properties / titleRemoved value: -{ - "description": "The Title of the Submittal", - "type": "string" -}
- Changed
create_submittal_response3 fields changed- changed
Input schema / properties / considered / descriptionPrevious value: -"Mapping of the Submittal Response"New value: +"JSON request body field — mapping of the Submittal Response" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of Submittal Response"New value: +"JSON request body field — name of Submittal Response" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
create_submittal_v1_1 - Added
create_support_pin - Removed
create_support_pin_v2_0 - Changed
create_task2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project this task belongs to."New value: +"JSON request body field — iD of the project this task belongs to." - changed
Input schema / properties / task / descriptionPrevious value: -"Task object."New value: +"JSON request body field — task object."
- Changed
create_task_item19 fields changed- changed
Input schema / properties / assigned_id / descriptionPrevious value: -"Assignee ID"New value: +"JSON request body field — unique identifier of the assigned" - changed
Input schema / properties / assignee_ids / descriptionPrevious value: -"Assignee IDs"New value: +"JSON request body field — array of assignee identifiers" - changed
Input schema / properties / attachments / descriptionPrevious value: -"Task Item attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — task Item attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Tasks operation" - changed
Input schema / properties / distribution_member_ids / descriptionPrevious value: -"Distribution Member IDs"New value: +"JSON request body field — distribution Member IDs" - changed
Input schema / properties / document_management_document_revision_ids / descriptionPrevious value: -"PDM document to attach to the response"New value: +"JSON request body field — pDM document to attach to the response" - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / due_date / descriptionPrevious value: -"Date and time due"New value: +"JSON request body field — due date in YYYY-MM-DD format" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / number / descriptionPrevious value: -"Number"New value: +"JSON request body field — the number for this Tasks operation" - changed
Input schema / properties / private / descriptionPrevious value: -"Privacy flag"New value: +"JSON request body field — privacy flag" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / prostore_file_ids / descriptionPrevious value: -"Prostore File IDs"New value: +"JSON request body field — array of prostore file identifiers" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Tasks operation" - changed
Input schema / properties / task_item_category_id / descriptionPrevious value: -"The task item category to associate with the task item."New value: +"JSON request body field — the task item category to associate with the task item." - changed
Input schema / properties / title / descriptionPrevious value: -"Title"New value: +"JSON request body field — the title for this Tasks operation" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
- Changed
create_tax_code8 fields changed- changed
Input schema / properties / archived / descriptionPrevious value: -"Set to true if this tax code has been archived"New value: +"JSON request body field — set to true if this tax code has been archived" - changed
Input schema / properties / code / descriptionPrevious value: -"The Tax Code"New value: +"JSON request body field — the Tax Code" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / default_tax_code / descriptionPrevious value: -"Set to true if this tax code is default tax code"New value: +"JSON request body field — set to true if this tax code is default tax code" - changed
Input schema / properties / description / descriptionPrevious value: -"The Description of the Tax Code"New value: +"JSON request body field — the Description of the Tax Code" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"Additional Third-party Metadata for the Tax Code. Note: This is a free-form text field."New value: +"JSON request body field — additional Third-party Metadata for the Tax Code. Note: This is a free-form text field." - changed
Input schema / properties / origin_id / descriptionPrevious value: -"The Third-party ID of the Tax Code"New value: +"JSON request body field — the Third-party ID of the Tax Code" - changed
Input schema / properties / rate1 / descriptionPrevious value: -"Rate to apply for first Tax Type"New value: +"JSON request body field — rate to apply for first Tax Type"
- Changed
create_tax_type5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / description / descriptionPrevious value: -"The Description of the Tax Type"New value: +"JSON request body field — the Description of the Tax Type" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Tax Type"New value: +"JSON request body field — the Name of the Tax Type" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"Additional Third-party Metadata for the Tax Type. Note: This is a free-form text field."New value: +"JSON request body field — additional Third-party Metadata for the Tax Type. Note: This is a free-form text field." - changed
Input schema / properties / origin_id / descriptionPrevious value: -"The Third-party ID of the Tax Type"New value: +"JSON request body field — the Third-party ID of the Tax Type"
- Changed
create_time_and_material_timecard7 fields changed- changed
Input schema / properties / hours_worked / descriptionPrevious value: -"Total hours worked"New value: +"JSON request body field — total hours worked" - changed
Input schema / properties / login_information_id / descriptionPrevious value: -"ID of the person the timecard is being created for"New value: +"JSON request body field — iD of the person the timecard is being created for" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / time_and_material_entry_id / descriptionPrevious value: -"Time & Material Entry Id the timecard is associated with"New value: +"JSON request body field — time & Material Entry Id the timecard is associated with" - changed
Input schema / properties / timecard_time_type_id / descriptionPrevious value: -"Type id for the type of timecard being created"New value: +"JSON request body field — type id for the type of timecard being created" - changed
Input schema / properties / work_classification_id / descriptionPrevious value: -"ID of the worker's work classification"New value: +"JSON request body field — iD of the worker's work classification"
- Changed
create_time_off_for_a_person13 fields changed- changed
Input schema / properties / apply_to_saturday / descriptionPrevious value: -"Whether the time off applies to Saturdays."New value: +"JSON request body field — whether the time off applies to Saturdays." - changed
Input schema / properties / apply_to_sunday / descriptionPrevious value: -"Whether the time off applies to Sundays."New value: +"JSON request body field — whether the time off applies to Sundays." - changed
Input schema / properties / batch_end_time / descriptionPrevious value: -"End time of the time off (HH:MM am/pm)."New value: +"JSON request body field — end time of the time off (HH:MM am/pm)." - changed
Input schema / properties / batch_start_time / descriptionPrevious value: -"Start time of the time off (HH:MM am/pm)."New value: +"JSON request body field — start time of the time off (HH:MM am/pm)." - changed
Input schema / properties / cadence / descriptionPrevious value: -"Cadence of the repeating time off."New value: +"JSON request body field — cadence of the repeating time off." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / end_day / descriptionPrevious value: -"The end date of the time off."New value: +"JSON request body field — the end date of the time off." - changed
Input schema / properties / is_paid / descriptionPrevious value: -"Whether the time off is paid."New value: +"JSON request body field — whether the time off is paid." - changed
Input schema / properties / person_id / descriptionPrevious value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person" - changed
Input schema / properties / reason / descriptionPrevious value: -"The reason for the time off."New value: +"JSON request body field — the reason for the time off." - changed
Input schema / properties / repeat / descriptionPrevious value: -"Repeat interval of the time off instances."New value: +"JSON request body field — repeat interval of the time off instances." - changed
Input schema / properties / repeat_end_day / descriptionPrevious value: -"The end date of the repeating time off."New value: +"JSON request body field — the end date of the repeating time off." - changed
Input schema / properties / start_day / descriptionPrevious value: -"The start date of the time off."New value: +"JSON request body field — the start date of the time off."
- Removed
create_timecard_entry - Changed
create_timecard_entry_company3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Timecard Entry belongs to"New value: +"JSON request body field — the ID of the Project the Timecard Entry belongs to" - changed
Input schema / properties / timecard_entry / descriptionPrevious value: -"Timecard Entry object"New value: +"JSON request body field — timecard Entry object"
- Changed
create_timecard_entry_project22 fields changed- changed
Input schema / properties / billable / descriptionPrevious value: -"The billable status of the timecard entry. Must be either true or false."New value: +"JSON request body field — the billable status of the Timecard Entry. Must be either true or false." - changed
Input schema / properties / cost_code_id / descriptionPrevious value: -"The ID of the cost code corresponding to the timecard entry property."New value: +"JSON request body field — the ID of the Cost Code corresponding to the Timecard Entry property." - added
Input schema / properties / custom_field_%{custom_field_definition_id}Added value: +{ + "description": "JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ...", + "type": "string" +} - removed
Input schema / properties / daily_log_segment_idRemoved value: -{ - "description": "Daily Log Segment ID", - "type": "number" -} - changed
Input schema / properties / date / descriptionPrevious value: -"The date of the timecard entry in ISO 8601 format."New value: +"JSON request body field — the date of the Timecard Entry in ISO 8601 format." - removed
Input schema / properties / datetimeRemoved value: -{ - "description": "The date and time value of record. This property is mutually exclusive with the Date property.", - "type": "string" -} - changed
Input schema / properties / description / descriptionPrevious value: -"The description of the timecard entry."New value: +"JSON request body field — the description of the Timecard Entry." - changed
Input schema / properties / hours / descriptionPrevious value: -"Total number of hours worked (excluding breaks) for the timecard entry. This property is not required if the timesheet time entry is configured for start time and stop time."New value: +"JSON request body field — total number of hours worked (excluding breaks) for the timecard entry. This property is not required if the timesheet time entry is configured for start time and stop time." - changed
Input schema / properties / line_item_type_id / descriptionPrevious value: -"The ID of the line item type corresponding to the time card entry."New value: +"JSON request body field — the ID of the line item type corresponding to the time card entry." - changed
Input schema / properties / location_id / descriptionPrevious value: -"The ID of the multi-tier location corresponding to the timecard entry property."New value: +"JSON request body field — the ID of the Location corresponding to the Timecard Entry property." - changed
Input schema / properties / login_information_id / descriptionPrevious value: -"The ID of the login information corresponding to the timecard entry property."New value: +"JSON request body field — the ID of the Login Information corresponding to the Timecard Entry property." - changed
Input schema / properties / lunch_time / descriptionPrevious value: -"The duration of the lunch break, in minutes, for the timecard entry. This property is only required if the timesheet time entry is configured for start time and stop time."New value: +"JSON request body field — the duration of the lunch break, in minutes, for the Timecard Entry. This property is only required if the timesheet time entry is configured for start time and stop time." - changed
Input schema / properties / origin_data / descriptionPrevious value: -"The value of the related external data."New value: +"JSON request body field — the value of the related external data." - changed
Input schema / properties / origin_id / descriptionPrevious value: -"The ID of the related external data."New value: +"JSON request body field — the ID of the related external data." - changed
Input schema / properties / party_id / descriptionPrevious value: -"The ID of the Party of the Timecard Entry"New value: +"JSON request body field — the ID of the Party corresponding to the Timecard Entry property." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sub_job_id / descriptionPrevious value: -"The ID of the subjob corresponding to the timecard entry property."New value: +"JSON request body field — the ID of the Subjob corresponding to the Timecard Entry property." - changed
Input schema / properties / time_in / descriptionPrevious value: -"The start time of the timecard entry in ISO 8601 format. This property is only required if the timesheet time entry is configured for start time and stop time."New value: +"JSON request body field — the start time of the Timecard Entry in ISO 8601 format. This property is only required if the timesheet time entry is configured for start time and stop time." - changed
Input schema / properties / time_out / descriptionPrevious value: -"The stop time of the timecard entry in ISO 8601 format. This property is only required if the timesheet time entry is configured for start time and stop time."New value: +"JSON request body field — the stop time of the Timecard Entry in ISO 8601 format. This property is only required if the timesheet time entry is configured for start time and stop time." - changed
Input schema / properties / timecard_time_type_id / descriptionPrevious value: -"The ID of the timecard time type corresponding to the timecard entry property."New value: +"JSON request body field — the ID of the Timecard Time Type corresponding to the Timecard Entry property." - changed
Input schema / properties / timesheet_id / descriptionPrevious value: -"The ID of the timesheet corresponding to the timecard entry property."New value: +"JSON request body field — the ID of the Timesheet corresponding to the Timecard Entry property." - changed
Input schema / requiredPrevious value: -[ - "project_id", - "hours", - "lunch_time", - "time_in", - "time_out" -]New value: +[ + "project_id" +]
- Added
create_timecard_entry_project_2 - Added
create_timecard_entry_v1_0 - Removed
create_timecard_entry_v1_1 - Added
create_timeline_event - Removed
create_timeline_event_v2_0 - Changed
create_timesheet2 fields changed- changed
Input schema / properties / date / descriptionPrevious value: -"The Date of the Timesheet"New value: +"JSON request body field — the Date of the Timesheet" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
create_timesheet_to_budget_configuration3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / erp_default_line_item_type_id / descriptionPrevious value: -"ERP Line Item Type ID"New value: +"JSON request body field — eRP Line Item Type ID" - changed
Input schema / properties / line_item_type_id / descriptionPrevious value: -"Line Item Type ID"New value: +"JSON request body field — unique identifier of the line item type"
- Changed
create_todo2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the ToDo belongs to"New value: +"JSON request body field — the ID of the Project the ToDo belongs to" - changed
Input schema / properties / todo / descriptionPrevious value: -"ToDo object"New value: +"JSON request body field — toDo object"
- Changed
create_trade3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"The availability status of the Trade"New value: +"JSON request body field — the availability status of the Trade" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"The name of the Trade"New value: +"JSON request body field — the name of the Trade"
- Changed
create_unit_of_measure3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the Unit of Measure"New value: +"JSON request body field — name of the Unit of Measure" - changed
Input schema / properties / uom_category_id / descriptionPrevious value: -"ID of the Unit of Measure Category"New value: +"JSON request body field — iD of the Unit of Measure Category"
- Added
create_unmanaged_equipment_project - Removed
create_unmanaged_equipment_project_v2_0 - Changed
create_viewpoint_and_procore_item_association3 fields changed- changed
Input schema / properties / bim_viewpoint_id / descriptionPrevious value: -"BIM Viewpoint ID"New value: +"URL path parameter — unique identifier of the bim viewpoint" - changed
Input schema / properties / procore_item / descriptionPrevious value: -"Details of Procore item to be linked to a BimViewpoint"New value: +"JSON request body field — details of Procore item to be linked to a BimViewpoint" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
create_visitor_log3 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / visitor_log / descriptionPrevious value: -"visitor_log"New value: +"JSON request body field — the visitor log for this Daily Log operation"
- Changed
create_waste_log3 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Waste Log Attachments are not viewable or used on web. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data togethe..."New value: +"JSON request body field — waste Log Attachments are not viewable or used on web. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data togethe..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / waste_log / descriptionPrevious value: -"waste_log"New value: +"JSON request body field — the waste log for this Daily Log operation"
- Added
create_wbs_attribute_item - Removed
create_wbs_attribute_item_v2_0 - Added
create_wbs_attribute_items_in_bulk - Removed
create_wbs_attribute_items_in_bulk_v2_0 - Added
create_wbs_attributes - Removed
create_wbs_attributes_v2_0 - Removed
create_weather_log - Added
create_weather_log_project - Added
create_weather_log_project_v1_0 - Removed
create_weather_log_v1_1 - Changed
create_webhooks_trigger1 field changed- changed
Input schema / properties / hook_id / descriptionPrevious value: -"Webhooks Hook ID"New value: +"URL path parameter — unique identifier of the hook"
- Changed
create_witness_statement12 fields changed- changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / date_received / descriptionPrevious value: -"Date that the Witness Statement was received. This assumes the dates provided are in the project timezone."New value: +"JSON request body field — date that the Witness Statement was received. This assumes the dates provided are in the project timezone." - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"The ID of the Incident"New value: +"JSON request body field — the ID of the Incident" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / recording / descriptionPrevious value: -"recording"New value: +"JSON request body field — the recording for this Incidents operation" - changed
Input schema / properties / statement / descriptionPrevious value: -"The account of the event by the witness in rich text form."New value: +"JSON request body field — the account of the event by the witness in rich text form." - changed
Input schema / properties / upload_uuids / descriptionPrevious value: -"Array of uploaded file UUIDs."New value: +"JSON request body field — array of uploaded file UUIDs." - changed
Input schema / properties / witness_id / descriptionPrevious value: -"Witness ID"New value: +"JSON request body field — unique identifier of the witness"
- Changed
create_work_activity3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Work Activity is available for use"New value: +"JSON request body field — flag that denotes if the Work Activity is available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Work Activity"New value: +"JSON request body field — the Name of the Work Activity"
- Changed
create_work_log3 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Scheduled Work Log Attachments are not viewable or used on web. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-dat..."New value: +"JSON request body field — scheduled Work Log Attachments are not viewable or used on web. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-dat..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / work_log / descriptionPrevious value: -"work_log"New value: +"JSON request body field — the work log for this Daily Log operation"
- Changed
create_work_order_contract4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Work Order Contract attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]`..."New value: +"JSON request body field — work Order Contract attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]`..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / work_order_contract / descriptionPrevious value: -"Work Order Contract object"New value: +"JSON request body field — work Order Contract object"
- Changed
create_work_order_contract_detail_line_item3 fields changed- changed
Input schema / properties / contract_detail_line_item / descriptionPrevious value: -"The Detail Line Item object"New value: +"JSON request body field — the Detail Line Item object" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / work_order_contract_id / descriptionPrevious value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
- Changed
create_work_order_contract_line_item3 fields changed- changed
Input schema / properties / line_item / descriptionPrevious value: -"The Line Item object"New value: +"JSON request body field — the Line Item object" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / work_order_contract_id / descriptionPrevious value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
- Changed
create_workflow_activity_history7 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / comments / descriptionPrevious value: -"Comments"New value: +"JSON request body field — the comments for this Workflows operation" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / performed_by_id / descriptionPrevious value: -"Login Information ID of a Workflow User Role Login Information."New value: +"JSON request body field — login Information ID of a Workflow User Role Login Information." - changed
Input schema / properties / workflow_activity_id / descriptionPrevious value: -"Workflow Activity ID"New value: +"JSON request body field — workflow Activity ID" - changed
Input schema / properties / workflow_instance_id / descriptionPrevious value: -"Workflow Instance ID"New value: +"JSON request body field — workflow Instance ID" - changed
Input schema / properties / workflow_user_role_id / descriptionPrevious value: -"Workflow User Role ID"New value: +"JSON request body field — workflow User Role ID"
- Added
creates_a_inspection_item_signature_request_project - Added
creates_a_inspection_item_signature_request_project_v2_0 - Removed
creates_a_inspection_item_signature_request_v2_0_project - Removed
creates_a_inspection_item_signature_request_v2_0_project_v2_0 - Changed
creates_an_inspection_item_comment2 fields changed- changed
Input schema / properties / inspection_id / descriptionPrevious value: -"Unique identifier for the inspection."New value: +"URL path parameter — unique identifier for the inspection." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
creates_or_updates_a_budget_note_for_a_budget_or_a_forecasting5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / label / descriptionPrevious value: -"The custom name you have assigned to your Budget Note column. Use 'Notes' if using the default name"New value: +"JSON request body field — the custom name you have assigned to your Budget Note column. Use 'Notes' if using the default name" - changed
Input schema / properties / note / descriptionPrevious value: -"A note for a budget or a forecasting row"New value: +"JSON request body field — a note for a budget or a forecasting row" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / wbs_code_id / descriptionPrevious value: -"ID of the WBS code"New value: +"URL path parameter — unique identifier of the wbs code"
- Changed
creates_or_updates_project_date2 fields changed- changed
Input schema / properties / project_dates / descriptionPrevious value: -"project_dates"New value: +"JSON request body field — the project dates for this Project operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
creates_requested_change6 fields changed- changed
Input schema / properties / change_reason / descriptionPrevious value: -"Requested change reason"New value: +"JSON request body field — requested change reason" - changed
Input schema / properties / notes / descriptionPrevious value: -"Requested change notes"New value: +"JSON request body field — requested change notes" - changed
Input schema / properties / other_change / descriptionPrevious value: -"other_change"New value: +"JSON request body field — the other change for this Schedule (Legacy) operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / task / descriptionPrevious value: -"task"New value: +"JSON request body field — the task for this Schedule (Legacy) operation" - changed
Input schema / properties / task_id / descriptionPrevious value: -"The task for which requested changes will be added to."New value: +"Query string parameter — the task for which requested changes will be added to."
- Changed
deactivate_early_pay_program2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / early_pay_program_id / descriptionPrevious value: -"UUID of the early pay program"New value: +"URL path parameter — uUID of the early pay program"
- Changed
delete_a_budget_change2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier of budget change"New value: +"URL path parameter — unique identifier of budget change" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_a_budgeted_production_quantity6 fields changed- changed
Input schema / properties / cost_code_id / descriptionPrevious value: -"CostCode. DO NOT provide if your project is configured for Task Codes."New value: +"JSON request body field — costCode. DO NOT provide if your project is configured for Task Codes." - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Budgeted Production Quantity"New value: +"URL path parameter — id of the Budgeted Production Quantity" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Project"New value: +"JSON request body field — unique identifier for the Procore project" - changed
Input schema / properties / quantity / descriptionPrevious value: -"Quantity budgeted for a project cost code"New value: +"JSON request body field — quantity budgeted for a project cost code" - changed
Input schema / properties / unit_of_measure / descriptionPrevious value: -"Unit of Measure"New value: +"JSON request body field — the unit of measure for this Budget operation" - changed
Input schema / properties / wbs_code_id / descriptionPrevious value: -"The Production Quantity Code for the Budgeted Production Quantity. This is necessary if your project is configured for Task Codes. DO NOT provide if your project is not configured for Task Codes."New value: +"JSON request body field — the Production Quantity Code for the Budgeted Production Quantity. This is necessary if your project is configured for Task Codes. DO NOT provide if your project is not configured for Task Codes."
- Added
delete_a_change_order_change_reason - Removed
delete_a_change_order_change_reason_v2_0 - Changed
delete_a_classification2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Id of the classification"New value: +"URL path parameter — id of the classification" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_a_company_action_plan_templates2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Action Plan Template ID"New value: +"URL path parameter — company Action Plan Template ID"
- Removed
delete_a_company_action_plan_templates_v1_1 - Changed
delete_a_company_office2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the office"New value: +"URL path parameter — unique identifier of the Company Settings resource"
- Changed
delete_a_compliance_document_project3 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"identifier for the commitment contract"New value: +"URL path parameter — identifier for the commitment contract" - changed
Input schema / properties / id / descriptionPrevious value: -"identifier for the document"New value: +"URL path parameter — identifier for the document" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_a_compliance_document_project_v1_03 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"identifier for the commitment contract"New value: +"URL path parameter — identifier for the commitment contract" - changed
Input schema / properties / id / descriptionPrevious value: -"identifier for the document"New value: +"URL path parameter — identifier for the document" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
delete_a_coordination_issue_rest_v2_0 - Removed
delete_a_coordination_issue_rest_v2_0_v2_0 - Changed
delete_a_crew6 fields changed- changed
Input schema / properties / equipment_ids / descriptionPrevious value: -"equipment_ids"New value: +"JSON request body field — array of equipment identifiers" - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Crew"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / lead_party_id / descriptionPrevious value: -"Party Id of crew leader"New value: +"JSON request body field — party Id of crew leader" - changed
Input schema / properties / name / descriptionPrevious value: -"Crew Name"New value: +"JSON request body field — crew Name" - changed
Input schema / properties / party_ids / descriptionPrevious value: -"party_ids"New value: +"JSON request body field — array of party identifiers" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_a_direct_cost_line_item3 fields changed- changed
Input schema / properties / direct_cost_id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the direct cost" - changed
Input schema / properties / id / descriptionPrevious value: -"Direct Cost Line Item ID"New value: +"URL path parameter — direct Cost Line Item ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_a_drawing_area2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier for the drawing area."New value: +"URL path parameter — unique identifier for the drawing area." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
delete_a_drawing_area_v1_1 - Changed
delete_a_equipment_type2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the company to get the types for"New value: +"URL path parameter — iD of the company to get the types for"
- Changed
delete_a_job_title2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / job_title_id / descriptionPrevious value: -"Unique identifier for the Job Title."New value: +"URL path parameter — unique identifier for the Job Title."
- Added
delete_a_line_item_group_from_the_proposal_company - Added
delete_a_line_item_group_from_the_proposal_project - Removed
delete_a_line_item_group_from_the_proposal_v2_0_company - Removed
delete_a_line_item_group_from_the_proposal_v2_0_project - Added
delete_a_link - Removed
delete_a_link_v2_0 - Added
delete_a_maintenance_record_by_id - Added
delete_a_maintenance_record_by_id_project - Removed
delete_a_maintenance_record_by_id_project_v2_0 - Removed
delete_a_maintenance_record_by_id_v2_0 - Changed
delete_a_manual_forecast_line_item4 fields changed- changed
Input schema / properties / budget_line_item_id / descriptionPrevious value: -"Identifier of the parent budget line item. NOTE - budget line item id or wbs code id is required"New value: +"JSON request body field — identifier of the parent budget line item. NOTE - budget line item id or wbs code id is required" - changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier for the manual forecast line item."New value: +"URL path parameter — unique identifier for the manual forecast line item." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / wbs_code_id / descriptionPrevious value: -"Wbs code id of the parent budget line item. NOTE - budget line item id or wbs code id is required"New value: +"JSON request body field — wbs code id of the parent budget line item. NOTE - budget line item id or wbs code id is required"
- Added
delete_a_note_from_the_project_company - Added
delete_a_note_from_the_project_company_v2_0 - Removed
delete_a_note_from_the_project_v2_0_company - Removed
delete_a_note_from_the_project_v2_0_company_v2_0 - Changed
delete_a_payment_application_owner_invoice2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Payment Application (Owner Invoice) ID"New value: +"URL path parameter — payment Application (Owner Invoice) ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_a_person2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / person_id / descriptionPrevious value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
- Changed
delete_a_prime_contract_line_item3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Line Item ID"New value: +"URL path parameter — unique identifier of the Prime Contracts resource" - changed
Input schema / properties / prime_contract_id / descriptionPrevious value: -"Prime Contract ID"New value: +"URL path parameter — unique identifier of the prime contract" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Added
delete_a_proposal_from_the_project_company - Added
delete_a_proposal_from_the_project_company_v2_0 - Removed
delete_a_proposal_from_the_project_v2_0_company - Removed
delete_a_proposal_from_the_project_v2_0_company_v2_0 - Changed
delete_a_resource_planning_tag2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / tag_id / descriptionPrevious value: -"Unique identifier for the tag."New value: +"URL path parameter — unique identifier for the tag."
- Changed
delete_a_resource_request2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / request_id / descriptionPrevious value: -"Unique identifier for the Resource Request."New value: +"URL path parameter — unique identifier for the Resource Request."
- Changed
delete_a_response2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"The ID of the Response"New value: +"URL path parameter — the ID of the Response"
- Changed
delete_a_signature2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
- Changed
delete_a_single_group2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / group_id / descriptionPrevious value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group"
- Changed
delete_a_single_project2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
- Changed
delete_a_task_item_comment3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Task Item Comment ID"New value: +"URL path parameter — task Item Comment ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_a_time_and_material_attachment2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the time and material attachment"New value: +"URL path parameter — iD of the time and material attachment" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_a_time_and_material_entry2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Id of Time And Material Entry"New value: +"URL path parameter — id of Time And Material Entry" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_a_time_and_material_equipment_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Time And Material Equipment Log"New value: +"URL path parameter — id of the Time And Material Equipment Log" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_a_time_and_material_notification1 field changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_a_time_off_record3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / person_id / descriptionPrevious value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person" - changed
Input schema / properties / time_off_id / descriptionPrevious value: -"The UUID of the Time Off record."New value: +"URL path parameter — the UUID of the Time Off record."
- Changed
delete_accident_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Accident log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_action_plan2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan ID"New value: +"URL path parameter — unique identifier of the Action Plans resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_action_plan_approver_signature2 fields changed- changed
Input schema / properties / plan_approver_id / descriptionPrevious value: -"Action Plan Approver ID"New value: +"URL path parameter — action Plan Approver ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_action_plan_item2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Item ID"New value: +"URL path parameter — unique identifier of the Action Plans resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_action_plan_item_assignee2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Item Assignee ID"New value: +"URL path parameter — action Plan Item Assignee ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_action_plan_item_assignee_signature2 fields changed- changed
Input schema / properties / plan_item_assignee_id / descriptionPrevious value: -"Action Plan Item Assignee ID"New value: +"URL path parameter — action Plan Item Assignee ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_action_plan_receiver_signature2 fields changed- changed
Input schema / properties / plan_receiver_id / descriptionPrevious value: -"Action Plan Receiver ID"New value: +"URL path parameter — action Plan Receiver ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_action_plan_reference2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Reference ID"New value: +"URL path parameter — action Plan Reference ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_action_plan_section2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Section ID"New value: +"URL path parameter — action Plan Section ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_action_plan_template_approver2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Template Approver ID"New value: +"URL path parameter — action Plan Template Approver ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_action_plan_template_receiver2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Template Receiver ID"New value: +"URL path parameter — action Plan Template Receiver ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_action_plan_test_record2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Test Record ID"New value: +"URL path parameter — action Plan Test Record ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_action_plan_test_record_request2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Test Record Request ID"New value: +"URL path parameter — test Record Request ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_action_plan_verification_method2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Verification Method ID"New value: +"URL path parameter — action Plan Verification Method ID"
- Changed
delete_actual_production_quantity2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_affliction_type2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Affliction Type ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
- Changed
delete_an_equipment2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Id of the equipment"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_an_equipment_make2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the equipment make"New value: +"URL path parameter — iD of the equipment make"
- Changed
delete_an_equipment_model2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the company to get the models for"New value: +"URL path parameter — iD of the company to get the models for"
- Added
delete_an_estimate_line_item_from_the_proposal_company - Added
delete_an_estimate_line_item_from_the_proposal_project - Removed
delete_an_estimate_line_item_from_the_proposal_v2_0_company - Removed
delete_an_estimate_line_item_from_the_proposal_v2_0_project - Changed
delete_an_inspection_item_attachment3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Item Attachment ID"New value: +"URL path parameter — unique identifier of the Inspections resource" - changed
Input schema / properties / inspection_id / descriptionPrevious value: -"Unique identifier for the inspection."New value: +"URL path parameter — unique identifier for the inspection." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_an_project_equipment_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the company to get the logs for"New value: +"URL path parameter — iD of the company to get the logs for" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_an_rfi_response3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Reply ID"New value: +"URL path parameter — unique identifier of the RFI resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / rfi_id / descriptionPrevious value: -"RFI ID"New value: +"URL path parameter — unique identifier of the rfi"
- Changed
delete_app_configuration2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"App Configuration ID"New value: +"URL path parameter — app Configuration ID"
- Changed
delete_attachment3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Attachment ID"New value: +"URL path parameter — unique identifier of the Inspections resource" - changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist (Inspection) ID"New value: +"URL path parameter — checklist (Inspection) ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
delete_bid_board_project - Removed
delete_bid_board_project_v2_0 - Changed
delete_bid_form3 fields changed- changed
Input schema / properties / bid_form_id / descriptionPrevious value: -"Bid Form ID"New value: +"URL path parameter — unique identifier of the bid form" - changed
Input schema / properties / bid_package_id / descriptionPrevious value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_bid_form_item3 fields changed- changed
Input schema / properties / bid_form_item_id / descriptionPrevious value: -"Bid Form Item ID"New value: +"URL path parameter — unique identifier of the bid form item" - changed
Input schema / properties / bid_package_id / descriptionPrevious value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_bid_form_section3 fields changed- changed
Input schema / properties / bid_form_section_id / descriptionPrevious value: -"Bid Form Section ID"New value: +"URL path parameter — unique identifier of the bid form section" - changed
Input schema / properties / bid_package_id / descriptionPrevious value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_billing_period2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Billing Period ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_bim_file2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"BIM File ID"New value: +"URL path parameter — unique identifier of the BIM resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_bim_level2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"BIM Level ID"New value: +"URL path parameter — unique identifier of the BIM resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_bim_model2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"BIM Model ID"New value: +"URL path parameter — unique identifier of the BIM resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_bim_model_revision2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"BIM Model Revision ID"New value: +"URL path parameter — bIM Model Revision ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_bim_model_revision_plan2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"BIM Model Revision Plan ID"New value: +"URL path parameter — bIM Model Revision Plan ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_bim_model_revision_viewpoint2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Bim Model Revision Viewpoint ID"New value: +"URL path parameter — bim Model Revision Viewpoint ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_bim_plan2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"BIM Plan ID"New value: +"URL path parameter — unique identifier of the BIM resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Added
delete_budget_line_item - Removed
delete_budget_line_item_v2_0 - Changed
delete_budget_lock2 fields changed- changed
Input schema / properties / destroy_all_budget_line_item_transfers / descriptionPrevious value: -"Allows users to unlock the budget while either preserving or destroying the existing budget modifications.\nDefaults to 'true' when not included in request."New value: +"Query string parameter — allows users to unlock the budget while either preserving or destroying the existing budget modifications.\nDefaults to 'true' when not included in request." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_budget_modification2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Budget resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_bulk_coordination_issues2 fields changed- changed
Input schema / properties / deletes / descriptionPrevious value: -"An array of objects containing resource id to delete"New value: +"JSON request body field — an array of objects containing resource id to delete" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
delete_calendar_item2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Calendar Item ID"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_call_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Call log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
delete_catalog - Removed
delete_catalog_v2_0 - Changed
delete_category3 fields changed- changed
Input schema / properties / category_id / descriptionPrevious value: -"Unique identifier for the Category."New value: +"URL path parameter — unique identifier for the Category." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
- Added
delete_change_event - Changed
delete_change_event_production_quantity3 fields changed- changed
Input schema / properties / change_event_id / descriptionPrevious value: -"Unique identifier for the Change Event"New value: +"URL path parameter — unique identifier for the Change Event" - changed
Input schema / properties / id / descriptionPrevious value: -"Change Event Production Quantity ID"New value: +"URL path parameter — change Event Production Quantity ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
delete_change_event_v1_1 - Changed
delete_checklist2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the Inspections resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_checklist_inspection2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the Inspections resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
delete_checklist_inspection_v1_1 - Changed
delete_checklist_inspections_item_attachment2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Item ID"New value: +"URL path parameter — unique identifier of the Inspections resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_checklist_item_response2 fields changed- changed
Input schema / properties / item_id / descriptionPrevious value: -"Checklist Item ID"New value: +"URL path parameter — unique identifier of the item" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_checklist_schedule2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist Schedule ID"New value: +"URL path parameter — checklist Schedule ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_checklist_schedule_attachment3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist Schedule Attachment ID"New value: +"URL path parameter — checklist Schedule Attachment ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / schedule_id / descriptionPrevious value: -"Checklist Schedule ID"New value: +"URL path parameter — checklist Schedule ID"
- Changed
delete_checklist_section3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist Section ID"New value: +"URL path parameter — checklist Section ID" - changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_checklist_signature3 fields changed- changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / signature_request_id / descriptionPrevious value: -"Checklist Signature Request ID"New value: +"URL path parameter — checklist Signature Request ID"
- Changed
delete_checklist_signature_request3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Signature Request ID"New value: +"URL path parameter — signature Request ID" - changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_classification2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Classification"New value: +"URL path parameter — id of the Classification"
- Changed
delete_commitment_change_order2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Commitment Change Order"New value: +"URL path parameter — iD of the Commitment Change Order" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_commitment_change_order_batch2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Commitment Change Order Batch"New value: +"URL path parameter — iD of the Commitment Change Order Batch" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
delete_commitment_change_order_line_item - Removed
delete_commitment_change_order_line_item_v2_0 - Added
delete_commitment_contract - Added
delete_commitment_contract_line_item - Removed
delete_commitment_contract_line_item_v2_0 - Removed
delete_commitment_contract_v2_0 - Changed
delete_company_action_plan_template_item_assignee2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Assignee ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
- Changed
delete_company_action_plan_template_reference2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Reference ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
- Changed
delete_company_action_plan_template_test_record_request2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Action Plan Template Test Record Request ID"New value: +"URL path parameter — company Action Plan Template Test Record Request ID"
- Changed
delete_company_action_plan_type2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Action Plan Type ID"New value: +"URL path parameter — company Action Plan Type ID"
- Changed
delete_company_checklist_section2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Checklist Section ID"New value: +"URL path parameter — company Checklist Section ID"
- Changed
delete_company_checklist_template2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Checklist Template ID"New value: +"URL path parameter — company Checklist Template ID"
- Changed
delete_company_currency_configuration1 field changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company"
- Changed
delete_company_file2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the File"New value: +"URL path parameter — unique identifier of the Documents resource"
- Changed
delete_company_folder2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Folder"New value: +"URL path parameter — unique identifier of the Documents resource"
- Changed
delete_company_form_template2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Form Template ID"New value: +"URL path parameter — company Form Template ID"
- Changed
delete_company_inspection_template_item3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Inspection Template Item ID"New value: +"URL path parameter — company Inspection Template Item ID" - changed
Input schema / properties / inspection_template_id / descriptionPrevious value: -"The ID of the Company Inspection Template"New value: +"URL path parameter — the ID of the Company Inspection Template"
- Changed
delete_company_inspection_template_item_reference3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"The ID of the Company Inspection Template Item Reference"New value: +"URL path parameter — the ID of the Company Inspection Template Item Reference" - changed
Input schema / properties / inspection_template_id / descriptionPrevious value: -"The ID of the Company Inspection Template"New value: +"URL path parameter — the ID of the Company Inspection Template"
- Changed
delete_company_insurance2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource"
- Changed
delete_company_logo1 field changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
- Added
delete_company_role - Removed
delete_company_role_v2_0 - Changed
delete_company_segment_item3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Segment Item ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource" - changed
Input schema / properties / segment_id / descriptionPrevious value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment"
- Changed
delete_company_vendor_insurance3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
- Added
delete_company_webhooks_hook - Removed
delete_company_webhooks_hook_v2_0 - Added
delete_company_webhooks_trigger - Removed
delete_company_webhooks_trigger_v2_0 - Changed
delete_configurable_field_set2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Configurable Field Set ID"New value: +"URL path parameter — configurable Field Set ID"
- Changed
delete_context_by_id4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / context_id / descriptionPrevious value: -"context_id"New value: +"URL path parameter — unique identifier of the context" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / skip_resource_deletion / descriptionPrevious value: -"skip_resource_deletion"New value: +"Query string parameter — skip_resource_deletion"
- Changed
delete_context_by_query_parameters7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / context_type / descriptionPrevious value: -"context_type"New value: +"Query string parameter — the context type for this Document Markup operation" - changed
Input schema / properties / context_type_id / descriptionPrevious value: -"context_type_id"New value: +"Query string parameter — unique identifier of the context type" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / skip_resource_deletion / descriptionPrevious value: -"skip_resource_deletion"New value: +"Query string parameter — skip_resource_deletion" - changed
Input schema / properties / sub_context_type / descriptionPrevious value: -"sub_context_type"New value: +"Query string parameter — the sub context type for this Document Markup operation" - changed
Input schema / properties / sub_context_type_id / descriptionPrevious value: -"sub_context_type_id"New value: +"Query string parameter — unique identifier of the sub context type"
- Changed
delete_contract_payment3 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"ID of the Contract"New value: +"Query string parameter — unique identifier of the contract" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_contributing_behavior2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Contributing Behavior ID"New value: +"URL path parameter — contributing Behavior ID"
- Changed
delete_contributing_condition2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Contributing Condition ID"New value: +"URL path parameter — contributing Condition ID"
- Changed
delete_coordination_issue2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_coordination_issue_attachment3 fields changed- changed
Input schema / properties / coordination_issue_id / descriptionPrevious value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID" - changed
Input schema / properties / id / descriptionPrevious value: -"Attachment ID"New value: +"URL path parameter — unique identifier of the Coordination Issues resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Added
delete_coordination_issue_workflow_issue - Removed
delete_coordination_issue_workflow_issue_v2_0 - Added
delete_cost_item - Removed
delete_cost_item_v2_0 - Added
delete_cost_items - Removed
delete_cost_items_v2_0 - Changed
delete_custom_field2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / field_id / descriptionPrevious value: -"UUID of the Custom Field."New value: +"URL path parameter — uUID of the Custom Field."
- Changed
delete_daily_construction_report_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Daily Construction Report Log ID"New value: +"URL path parameter — daily Construction Report Log ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_delay_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Delay log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_delivery_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Delivery Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_department2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Department ID"New value: +"URL path parameter — unique identifier of the Directory resource"
- Changed
delete_direct_cost_item2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Direct Costs resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
delete_direct_cost_item_v1_1 - Changed
delete_document_custom_tag3 fields changed- changed
Input schema / properties / document_id / descriptionPrevious value: -"ID of the Folder or File to remove the Custom Tag from"New value: +"Query string parameter — iD of the Folder or File to remove the Custom Tag from" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Custom Tag"New value: +"URL path parameter — iD of the Custom Tag" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_drawing_set2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the drawing set"New value: +"URL path parameter — iD of the drawing set" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_drawing_upload4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the drawing upload"New value: +"URL path parameter — unique identifier of the Drawings resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — specifies the level of detail returned in the response.\nThe 'with_drawing_log_imports' view provides additional data as shown below.\nThe 'normal' view is the default if not specified.", + "enum": [ + "normal", + "with_drawing_log_imports" + ], + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "project_id", - "id" -]New value: +[ + "id", + "project_id" +]
- Removed
delete_drawing_upload_v1_1 - Changed
delete_dumpster_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Dumpster Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_equipment2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Equipment"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
- Added
delete_equipment_attachment_company - Removed
delete_equipment_attachment_company_v2_0 - Added
delete_equipment_attachment_project - Removed
delete_equipment_attachment_project_v2_0 - Changed
delete_equipment_category2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Equipment Category"New value: +"URL path parameter — iD of the Equipment Category"
- Added
delete_equipment_category_company - Removed
delete_equipment_category_company_v2_0 - Added
delete_equipment_company - Removed
delete_equipment_company_v2_0 - Changed
delete_equipment_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Equipment Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_equipment_maintenance_log2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the company to get the makes for"New value: +"URL path parameter — iD of the company to get the makes for"
- Added
delete_equipment_make_company - Removed
delete_equipment_make_company_v2_0 - Added
delete_equipment_model_company - Removed
delete_equipment_model_company_v2_0 - Added
delete_equipment_status_company - Removed
delete_equipment_status_company_v2_0 - Changed
delete_equipment_timecard_entry_project3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the equipment timecard entry"New value: +"URL path parameter — iD of the equipment timecard entry" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
delete_equipment_type_company - Removed
delete_equipment_type_company_v2_0 - Changed
delete_form2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Form ID"New value: +"URL path parameter — unique identifier of the Forms resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_from_project2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the vendor"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
delete_from_project_v1_1 - Changed
delete_generic_tool_item4 fields changed- changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool" - changed
Input schema / properties / generic_tool_item_id / descriptionPrevious value: -"Unique identifier for the Generic Tool Item"New value: +"URL path parameter — unique identifier for the Generic Tool Item" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"If supplied customize the response format"New value: +"Query string parameter — if supplied customize the response format"
- Changed
delete_generic_tool_status3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool" - changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier for the Status"New value: +"URL path parameter — unique identifier for the Status"
- Changed
delete_group4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / delete_resources / descriptionPrevious value: -"delete_resources"New value: +"Query string parameter — the delete resources for this Document Markup operation" - changed
Input schema / properties / group_id / descriptionPrevious value: -"group_id"New value: +"URL path parameter — unique identifier of the group" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
delete_harm_source2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Harm Source ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
- Changed
delete_hazard2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Hazard ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
- Changed
delete_image3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the image"New value: +"URL path parameter — unique identifier of the Photos resource" - changed
Input schema / properties / permanent / descriptionPrevious value: -"If true, permanently deletes the image."New value: +"Query string parameter — if true, permanently deletes the image." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_image_category2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the image category"New value: +"URL path parameter — iD of the image category" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_incident2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Incident ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_incident_action_type2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Incident Action Type ID"New value: +"URL path parameter — incident Action Type ID"
- Changed
delete_incident_alert_recipient3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Incident Alert Recipient's User ID"New value: +"URL path parameter — incident Alert Recipient's User ID" - changed
Input schema / properties / severity_level_id / descriptionPrevious value: -"Incident Severity Level ID"New value: +"URL path parameter — incident Severity Level ID"
- Changed
delete_inspection_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Inspection Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_inspection_type2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Inspection Type ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
- Changed
delete_instruction2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Instruction ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_instruction_type2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Instruction ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_item_response_set2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Item Response Set ID"New value: +"URL path parameter — item Response Set ID"
- Changed
delete_layer3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / layer_id / descriptionPrevious value: -"layer_id"New value: +"URL path parameter — unique identifier of the layer" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
delete_link2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Link ID"New value: +"URL path parameter — unique identifier of the Project-Level Configuration resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_location2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the location"New value: +"URL path parameter — unique identifier of the Project resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_lookahead2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Lookahead ID"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_lookahead_task2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Lookahead Task ID"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
delete_lookahead_v1_1 - Changed
delete_managed_equipment_attachment3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Managed Equipment Attachment"New value: +"URL path parameter — id of the Managed Equipment Attachment" - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"Id of the Equipment"New value: +"URL path parameter — unique identifier of the managed equipment"
- Changed
delete_managed_equipment_maintenance_log_attachment3 fields changed- changed
Input schema / properties / attachment_id / descriptionPrevious value: -"ID of the managed equipment maintenance log attachment"New value: +"URL path parameter — iD of the managed equipment maintenance log attachment" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the managed equipment maintenance log to get attachments from"New value: +"URL path parameter — iD of the managed equipment maintenance log to get attachments from"
- Changed
delete_manpower_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Manpower Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_markups4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / markups / descriptionPrevious value: -"markups"New value: +"JSON request body field — the markups for this Document Markup operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / viewer_doc_id / descriptionPrevious value: -"viewer_doc_id"New value: +"URL path parameter — unique identifier of the viewer doc"
- Changed
delete_material2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the project"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
delete_meeting - Changed
delete_meeting_attendee_record3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Meeting Attendee record"New value: +"URL path parameter — iD of the Meeting Attendee record" - changed
Input schema / properties / meeting_id / descriptionPrevious value: -"ID of the Meeting"New value: +"Query string parameter — unique identifier of the meeting" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Added
delete_meeting_category - Removed
delete_meeting_category_v2_0 - Added
delete_meeting_project - Added
delete_meeting_v1_0 - Removed
delete_meeting_v1_1 - Changed
delete_monitoring_resource2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Monitoring Resource ID"New value: +"URL path parameter — monitoring Resource ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_multiple_signatures2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / time_and_material_signature_ids / descriptionPrevious value: -"time_and_material_signature_ids"New value: +"JSON request body field — time_and_material_signature_ids"
- Changed
delete_notes_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Notes Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_observation_item2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Observation ID"New value: +"URL path parameter — unique identifier of the Observations resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_payout4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / deletedReason / descriptionPrevious value: -"Reason for deleting the payout"New value: +"JSON request body field — reason for deleting the payout" - changed
Input schema / properties / disbursement_id / descriptionPrevious value: -"Unique identifier for the disbursement."New value: +"URL path parameter — unique identifier for the disbursement." - changed
Input schema / properties / payout_id / descriptionPrevious value: -"Unique identifier for the payout."New value: +"URL path parameter — unique identifier for the payout."
- Changed
delete_pdf_template_config2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"PDF Template Configs ID"New value: +"URL path parameter — pDF Template Configs ID"
- Changed
delete_plan_revision_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Plan Revision Log ID"New value: +"URL path parameter — plan Revision Log ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_potential_change_order_line_item3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Change Orders resource" - changed
Input schema / properties / potential_change_order_id / descriptionPrevious value: -"Potential Change Order ID"New value: +"URL path parameter — potential Change Order ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_prime_change_order2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Prime Change Order"New value: +"URL path parameter — iD of the Prime Change Order" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_prime_change_order_batch2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Prime Change Order Batch"New value: +"URL path parameter — iD of the Prime Change Order Batch" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
delete_prime_change_order_line_item - Removed
delete_prime_change_order_line_item_v2_0 - Removed
delete_prime_contract - Added
delete_prime_contract_line_item - Removed
delete_prime_contract_line_item_v2_0 - Added
delete_prime_contract_project - Added
delete_prime_contract_v1_0 - Removed
delete_prime_contract_v2_0 - Changed
delete_procore_item_association4 fields changed- changed
Input schema / properties / coordination_issue_id / descriptionPrevious value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID" - changed
Input schema / properties / id / descriptionPrevious value: -"Procore Item Association ID"New value: +"URL path parameter — procore Item Association ID" - changed
Input schema / properties / item_type / descriptionPrevious value: -"Type of Procore item"New value: +"Query string parameter — type of Procore item" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_productivity_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Productivity Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_program2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the program"New value: +"URL path parameter — unique identifier of the Company Settings resource"
- Changed
delete_project_action_plan_template_reference2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Project Action Plan Template Reference ID"New value: +"URL path parameter — project Action Plan Template Reference ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_project_bid_type2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Project Bid Type"New value: +"URL path parameter — iD of the Project Bid Type"
- Changed
delete_project_checklist_template2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_project_currency_configuration2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
delete_project_distribution_group2 fields changed- changed
Input schema / properties / distribution_group_id / descriptionPrevious value: -"Unique identifier for the distribution group."New value: +"URL path parameter — unique identifier for the distribution group." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_project_equipment_maintenance_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the company to get the maintenance logs for"New value: +"URL path parameter — iD of the company to get the maintenance logs for" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_project_file2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the File"New value: +"URL path parameter — unique identifier of the Documents resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_project_folder2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the folder"New value: +"URL path parameter — unique identifier of the Documents resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_project_inspection_template_item_reference3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"The ID of the Project Inspection Template Item Reference"New value: +"URL path parameter — the ID of the Project Inspection Template Item Reference" - changed
Input schema / properties / inspection_template_id / descriptionPrevious value: -"The ID of the Project Inspection Template"New value: +"URL path parameter — the ID of the Project Inspection Template" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_project_insurance3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Extended view of data"New value: +"Query string parameter — extended view of data"
- Changed
delete_project_location2 fields changed- changed
Input schema / properties / location_id / descriptionPrevious value: -"ID of the location"New value: +"URL path parameter — unique identifier of the location" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
delete_project_location_v1_1 - Changed
delete_project_membership3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"The ID of the Project Membership"New value: +"URL path parameter — the ID of the Project Membership" - changed
Input schema / properties / party_id / descriptionPrevious value: -"The ID of the Party (reference user)"New value: +"Query string parameter — the ID of the Party (reference user)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_project_observation_type2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Project Observation Type ID"New value: +"URL path parameter — project Observation Type ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_project_owner_type2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Project Owner Type"New value: +"URL path parameter — iD of the Project Owner Type"
- Changed
delete_project_region2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Project Region"New value: +"URL path parameter — iD of the Project Region"
- Changed
delete_project_role2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Project Role"New value: +"URL path parameter — iD of the Project Role" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_project_segment_item4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Segment Item ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / segment_id / descriptionPrevious value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment" - changed
Input schema / properties / sub_job_id / descriptionPrevious value: -"Sub Job ID (required for a sub job's cost codes only)"New value: +"Query string parameter — sub Job ID (required for a sub job's cost codes only)"
- Changed
delete_project_stage2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the project stage"New value: +"URL path parameter — iD of the project stage"
- Added
delete_project_task_company - Added
delete_project_task_company_v2_0 - Removed
delete_project_task_v2_0_company - Removed
delete_project_task_v2_0_company_v2_0 - Changed
delete_project_type2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the project type"New value: +"URL path parameter — iD of the project type"
- Changed
delete_project_vendor_insurance4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor" - changed
Input schema / properties / view / descriptionPrevious value: -"Extended view of data"New value: +"Query string parameter — extended view of data"
- Added
delete_project_webhooks_hook - Removed
delete_project_webhooks_hook_v2_0 - Added
delete_project_webhooks_trigger - Removed
delete_project_webhooks_trigger_v2_0 - Changed
delete_punch_item2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Punch Item"New value: +"URL path parameter — iD of the Punch Item" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_punch_item_type2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Punch Item Type"New value: +"URL path parameter — iD of the Punch Item Type" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Removed
delete_punch_item_v1_1 - Changed
delete_purchase_order_contract2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_purchase_order_contract_detail_line_item3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / purchase_order_contract_id / descriptionPrevious value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
- Changed
delete_purchase_order_contract_line_item3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / purchase_order_contract_id / descriptionPrevious value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
- Changed
delete_quantity_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Quantity Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
delete_requisition_compliance_document - Removed
delete_requisition_compliance_document_v2_0 - Changed
delete_requisition_subcontractor_invoice2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Removed
delete_requisition_subcontractor_invoice_v1_1 - Removed
delete_resource - Added
delete_resource_project - Added
delete_resource_v1_0 - Removed
delete_resource_v1_1 - Changed
delete_rfq3 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_rounding_configuration1 field changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
- Changed
delete_safety_violation_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Safety Violation Log ID"New value: +"URL path parameter — safety Violation Log ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_signature_project2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Signature ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_signature_project_v1_02 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Signature ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
delete_specification_area - Removed
delete_specification_area_v2_1 - Changed
delete_stamp3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — the unique identifier of the company" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — the unique identifier of the project" - changed
Input schema / properties / stamp_id / descriptionPrevious value: -"stamp_id"New value: +"URL path parameter — the unique identifier of the stamp to delete"
- Removed
delete_stamp_v2_0 - Changed
delete_standard_cost_code2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource"
- Changed
delete_sub_job2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_subcategory4 fields changed- changed
Input schema / properties / category_id / descriptionPrevious value: -"Unique identifier for the Category."New value: +"URL path parameter — unique identifier for the Category." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project" - changed
Input schema / properties / subcategory_id / descriptionPrevious value: -"Unique identifier for the Subcategory."New value: +"URL path parameter — unique identifier for the Subcategory."
- Added
delete_submittal - Removed
delete_submittal_v1_1 - Changed
delete_task2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the task"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_tax_type2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"The Tax Type ID"New value: +"URL path parameter — unique identifier of the Tax resource"
- Changed
delete_the_project_logo1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_time_and_material_timecard2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the project to get the time and material timecards for"New value: +"URL path parameter — iD of the project to get the time and material timecards for" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_timecard_entries2 fields changed- changed
Input schema / properties / ids / descriptionPrevious value: -"IDs of Timesheets to be deleted"New value: +"JSON request body field — iDs of Timesheets to be deleted" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_timecard_entry2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_timecard_entry_company2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry"
- Changed
delete_timecard_entry_project2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
delete_timeline_event - Removed
delete_timeline_event_v2_0 - Changed
delete_timesheet2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_timesheet_to_budget_configuration1 field changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
- Changed
delete_todo2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the todo"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_unit_of_measure2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Unit of Measure ID"New value: +"URL path parameter — unique identifier of the Units of Measure resource"
- Changed
delete_viewpoint_and_procore_item_association4 fields changed- changed
Input schema / properties / bim_viewpoint_id / descriptionPrevious value: -"BIM Viewpoint ID"New value: +"URL path parameter — unique identifier of the bim viewpoint" - changed
Input schema / properties / item_id / descriptionPrevious value: -"Procore Item ID"New value: +"Query string parameter — unique identifier of the item" - changed
Input schema / properties / item_type / descriptionPrevious value: -"Procore Item Type"New value: +"Query string parameter — procore Item Type" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_visitor_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Visitor Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_wage_override3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project" - changed
Input schema / properties / wage_override_id / descriptionPrevious value: -"Unique identifier for the Wage Override."New value: +"URL path parameter — unique identifier for the Wage Override."
- Changed
delete_waste_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Waste Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
delete_wbs_attribute_item - Removed
delete_wbs_attribute_item_v2_0 - Added
delete_wbs_attributes - Removed
delete_wbs_attributes_v2_0 - Changed
delete_wbs_segment3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource" - changed
Input schema / properties / segment_item_list_id / descriptionPrevious value: -"Segment Item List ID"New value: +"Query string parameter — segment Item List ID"
- Removed
delete_weather_log - Added
delete_weather_log_project - Added
delete_weather_log_project_v1_0 - Removed
delete_weather_log_v1_1 - Changed
delete_webhooks_hook3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the company. You must supply either a company_id or project_id." - changed
Input schema / properties / id / descriptionPrevious value: -"Webhooks Hook ID"New value: +"URL path parameter — unique identifier of the Webhooks resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the project. You must supply either a company_id or project_id."
- Changed
delete_webhooks_trigger4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the company. You must supply either a company_id or project_id." - changed
Input schema / properties / hook_id / descriptionPrevious value: -"Webhooks Hook ID"New value: +"URL path parameter — unique identifier of the hook" - changed
Input schema / properties / id / descriptionPrevious value: -"Webhooks Trigger ID"New value: +"URL path parameter — unique identifier of the Webhooks resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the project. You must supply either a company_id or project_id."
- Changed
delete_work_activity2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Work Activity ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
- Changed
delete_work_log2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Work Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
delete_work_order_contract2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
delete_work_order_contract_detail_line_item3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / work_order_contract_id / descriptionPrevious value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
- Changed
delete_work_order_contract_line_item3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / work_order_contract_id / descriptionPrevious value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
- Added
deletes_an_inspection_item_signature - Added
deletes_an_inspection_item_signature_request - Removed
deletes_an_inspection_item_signature_request_v2_0 - Removed
deletes_an_inspection_item_signature_v2_0 - Changed
destroy_action3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
destroy_environmental3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Environmental ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
destroy_injury3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Injury ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
destroy_near_miss3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Near Miss ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
destroy_property_damage3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Property Damage ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
destroy_task_item2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Task Item ID"New value: +"URL path parameter — unique identifier of the Tasks resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
destroy_witness_statement3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Witness Statement ID"New value: +"URL path parameter — witness Statement ID" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
disable_payments2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / projectIds / descriptionPrevious value: -"projectIds"New value: +"JSON request body field — the projectids for this Payments operation"
- Added
disassociate_equipment_with_project_company - Removed
disassociate_equipment_with_project_company_v2_0 - Added
disassociate_equipment_with_project_project - Removed
disassociate_equipment_with_project_project_v2_0 - Changed
document_markup_permissions4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
download_all_company_level_email_attachments5 fields changed- changed
Input schema / properties / communication_id / descriptionPrevious value: -"Communication ID"New value: +"URL path parameter — unique identifier of the communication" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / email_id / descriptionPrevious value: -"Email ID"New value: +"URL path parameter — unique identifier of the email" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
download_all_email_attachments5 fields changed- changed
Input schema / properties / communication_id / descriptionPrevious value: -"Communication ID"New value: +"URL path parameter — unique identifier of the communication" - changed
Input schema / properties / email_id / descriptionPrevious value: -"Email ID"New value: +"URL path parameter — unique identifier of the email" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
download_coordination_issues19 fields changed- changed
Input schema / properties / column_state / descriptionPrevious value: -"Optional array of column configuration objects from frontend table state.\nAllows export to respect custom column visibility and ordering.\nEach object should have a 'field' property with the column ..."New value: +"Query string parameter — optional array of column configuration objects from frontend table state.\nAllows export to respect custom column visibility and ordering.\nEach object should have a 'field' property with the column ..." - changed
Input schema / properties / export_format / descriptionPrevious value: -"Export File Format."New value: +"Query string parameter — export File Format." - changed
Input schema / properties / filters__assignee_company_id__ / descriptionPrevious value: -"Filter item(s) with matching assignee vendor companies."New value: +"Query string parameter — filter item(s) with matching assignee vendor companies." - changed
Input schema / properties / filters__assignee_id__ / descriptionPrevious value: -"Filter item(s) with matching assignees."New value: +"Query string parameter — filter item(s) with matching assignees." - changed
Input schema / properties / filters__coordination_issue_file_id__ / descriptionPrevious value: -"Filter item(s) with the exact coordination issue file."New value: +"Query string parameter — filter item(s) with the exact coordination issue file." - changed
Input schema / properties / filters__ids__ / descriptionPrevious value: -"Filter item(s) with matching ids."New value: +"Query string parameter — filter item(s) with matching ids." - changed
Input schema / properties / filters__issue_type__ / descriptionPrevious value: -"Filter item(s) with matching issue_type."New value: +"Query string parameter — filter item(s) with matching issue_type." - changed
Input schema / properties / filters__location_id__ / descriptionPrevious value: -"Filter item(s) with matching locations."New value: +"Query string parameter — filter item(s) with matching locations." - changed
Input schema / properties / filters__overdue / descriptionPrevious value: -"Filter item(s) with matching Overdue."New value: +"Query string parameter — filter item(s) with matching Overdue." - changed
Input schema / properties / filters__priority__ / descriptionPrevious value: -"Filter item(s) with matching priority."New value: +"Query string parameter — filter item(s) with matching priority." - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Filter item(s) with the matching search query. The search is performed on title and issue number."New value: +"Query string parameter — filter item(s) with the matching search query. The search is performed on title and issue number." - changed
Input schema / properties / filters__status__ / descriptionPrevious value: -"Filter item(s) with matching status."New value: +"Query string parameter — filter item(s) with matching status." - changed
Input schema / properties / filters__trade_id__ / descriptionPrevious value: -"Filter item(s) with matching trades."New value: +"Query string parameter — filter item(s) with matching trades." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Filter item(s) within a specific updated at iso8601 datetime range."New value: +"Query string parameter — filter item(s) within a specific updated at iso8601 datetime range." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Sort item(s) by an attribute. The default sort is ascending. To sort in descending order, prepend the sort value with a hyphen character '-'"New value: +"Query string parameter — sort item(s) by an attribute. The default sort is ascending. To sort in descending order, prepend the sort value with a hyphen character '-'" - changed
Input schema / properties / view / descriptionPrevious value: -"Export View."New value: +"Query string parameter — response detail level. Use 'normal' for standard fields or 'extended' for all fields"
- Changed
download_rfis_list6 fields changed- changed
Input schema / properties / export_format / descriptionPrevious value: -"File format for the export - 'pdf' or 'csv'."New value: +"Query string parameter — file format for the export - 'pdf' or 'csv'." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Search Query"New value: +"Query string parameter — filter results by query" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - removed
Input schema / properties / table_configuration_for_exportRemoved value: -{ - "additionalProperties": {}, - "description": "Table configuration for the export that controls which columns are visible and their order in the generated PDF or CSV.\n\nWhen provided, the export will respect both the column visibility settings a...", - "type": "object" -}
- Removed
download_rfis_list_v1_1 - Changed
download_schedule_file3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Added
draft_create - Removed
draft_create_v1_1 - Changed
duplicate_a_configurable_field_set_and_its_custom_fields4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Configurable Field Set ID"New value: +"URL path parameter — configurable Field Set ID" - changed
Input schema / properties / include_custom_fields / descriptionPrevious value: -"Boolean to dictate if the custom fields are duplicated"New value: +"Query string parameter — boolean to dictate if the custom fields are duplicated" - changed
Input schema / properties / name / descriptionPrevious value: -"Name for new fieldset"New value: +"Query string parameter — name for new fieldset"
- Added
edit_a_timecard_entry - Removed
edit_a_timecard_entry_v1_1 - Changed
email_a_time_and_material_entry2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Time And Material Entry"New value: +"URL path parameter — id of the Time And Material Entry" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
enable_a_person_to_log_in6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / email / descriptionPrevious value: -"The email the Person will use to log in. If the Person already has an email in LaborChart, this can be omitted. If no email is on record, this becomes required.\n"New value: +"JSON request body field — the email the Person will use to log in. If the Person already has an email in LaborChart, this can be omitted. If no email is on record, this becomes required.\n" - changed
Input schema / properties / no_invite / descriptionPrevious value: -"If `true`, the Person will be created with all user properties but will not receive an invitation to the platform. Admins can manually trigger an invitation from the user's profile.\n"New value: +"JSON request body field — if `true`, the Person will be created with all user properties but will not receive an invitation to the platform. Admins can manually trigger an invitation from the user's profile.\n" - changed
Input schema / properties / password / descriptionPrevious value: -"The password the Person will use to log in. If omitted, the Person will receive an email from LaborChart instructing them to set up a password. If provided, no email will be sent.\nPasswords must me..."New value: +"JSON request body field — the password the Person will use to log in. If omitted, the Person will receive an email from LaborChart instructing them to set up a password. If provided, no email will be sent.\nPasswords must me..." - changed
Input schema / properties / permission_level_id / descriptionPrevious value: -"UUID of the Permission Level that defines the user's access."New value: +"JSON request body field — uUID of the Permission Level that defines the user's access." - changed
Input schema / properties / person_id / descriptionPrevious value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
- Changed
enable_payments2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / projectIds / descriptionPrevious value: -"projectIds"New value: +"JSON request body field — the projectids for this Payments operation"
- Changed
export_company_level_email_communication4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Communication ID"New value: +"URL path parameter — unique identifier of the Emails resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
export_company_time_index_to_csv7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__deleted_at / descriptionPrevious value: -"Returns item(s) deleted within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) deleted within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__end_date / descriptionPrevious value: -"filters[end_date]"New value: +"Query string parameter — filter results by end date" - changed
Input schema / properties / filters__start_date / descriptionPrevious value: -"filters[start_date]"New value: +"Query string parameter — filter results by start date" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
export_email_communication_to_pdf5 fields changed- changed
Input schema / properties / communication_id / descriptionPrevious value: -"Communication ID"New value: +"URL path parameter — unique identifier of the communication" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / topic_type / descriptionPrevious value: -"The type of the topic to be associated with the communication"New value: +"Query string parameter — the type of the topic to be associated with the communication"
- Added
fetch_active_support_pin - Removed
fetch_active_support_pin_v2_0 - Added
fetch_attachment_by_id_company - Removed
fetch_attachment_by_id_company_v2_0 - Added
fetch_attachment_by_id_project - Removed
fetch_attachment_by_id_project_v2_0 - Changed
find_configurable_field_set_by_index10 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Project ID that is associated to the Configurable Field Set, if applicable"New value: +"Query string parameter — project ID that is associated to the Configurable Field Set, if applicable" - changed
Input schema / properties / scope__action_plan_type_id / descriptionPrevious value: -"Required for an Action Plans Plan Configurable Field Set (type of ConfigurableFieldSet::ActionPlans::Plan)"New value: +"Query string parameter — required for an Action Plans Plan Configurable Field Set (type of ConfigurableFieldSet::ActionPlans::Plan)" - changed
Input schema / properties / scope__category / descriptionPrevious value: -"Category or observations_category_id are required for an Observations Configurable Field Set (0 = quality, 1 = safety, 2 = commissioning, 3 = warranty, 4 = work to complete)"New value: +"Query string parameter — category or observations_category_id are required for an Observations Configurable Field Set (0 = quality, 1 = safety, 2 = commissioning, 3 = warranty, 4 = work to complete)" - changed
Input schema / properties / scope__generic_tool_id / descriptionPrevious value: -"Required for a Generic Tool Item Configurable Field Set (type of ConfigurableFieldSet::GenericToolItem)"New value: +"Query string parameter — required for a Generic Tool Item Configurable Field Set (type of ConfigurableFieldSet::GenericToolItem)" - changed
Input schema / properties / scope__inspection_type_id / descriptionPrevious value: -"Required for an Inspection Configurable Field Set. If a value is provided, only field set of the specific Inspection type is returned. If no value is provided, only field set of unassociated Inspec..."New value: +"Query string parameter — required for an Inspection Configurable Field Set. If a value is provided, only field set of the specific Inspection type is returned. If no value is provided, only field set of unassociated Inspec..." - changed
Input schema / properties / scope__observations_category_id / descriptionPrevious value: -"Category or observations_category_id Required for an Observations Configurable Field Set"New value: +"Query string parameter — category or observations_category_id Required for an Observations Configurable Field Set" - changed
Input schema / properties / type / descriptionPrevious value: -"The type of Configurable Field Set"New value: +"Query string parameter — the type of Configurable Field Set"
- Removed
find_or_create_an_annotated_document - Changed
find_or_create_an_annotated_document_with_markup_context9 fields changed- changed
Input schema / properties / attachment_id / descriptionPrevious value: -"attachment_id"New value: +"JSON request body field — unique identifier of the attachment" - changed
Input schema / properties / attachment_source / descriptionPrevious value: -"attachment_source"New value: +"JSON request body field — the attachment source for this Document Markup operation" - changed
Input schema / properties / combined_xfdf / descriptionPrevious value: -"combined_xfdf"New value: +"Query string parameter — the combined xfdf for this Document Markup operation" - changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / item_id / descriptionPrevious value: -"item_id"New value: +"JSON request body field — unique identifier of the item" - changed
Input schema / properties / item_type / descriptionPrevious value: -"item_type"New value: +"JSON request body field — the item type for this Document Markup operation" - changed
Input schema / properties / markup_context / descriptionPrevious value: -"markup_context"New value: +"Query string parameter — the markup context for this Document Markup operation" - changed
Input schema / properties / pin_origin / descriptionPrevious value: -"pin_origin"New value: +"Query string parameter — the pin origin for this Document Markup operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
find_or_create_location_s_by_path2 fields changed- changed
Input schema / properties / path / descriptionPrevious value: -"Array of Location names in descending order of depth."New value: +"JSON request body field — array of Location names in descending order of depth." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
finds_or_creates_a_inspection_item_signature_request - Removed
finds_or_creates_a_inspection_item_signature_request_v2_0 - Changed
generates_pdf_document10 fields changed- changed
Input schema / properties / contact / descriptionPrevious value: -"Indicates whether contacts should be included in PDF document."New value: +"Query string parameter — indicates whether contacts should be included in PDF document." - changed
Input schema / properties / filters__except_id / descriptionPrevious value: -"Returns users except as specified."New value: +"Query string parameter — returns users except as specified." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Returns users whose id attribute matches the parameter."New value: +"Query string parameter — returns users whose id attribute matches the parameter." - changed
Input schema / properties / filters__permission_template / descriptionPrevious value: -"Permission Template ID. Returns item(s) assiociated with the specified Permission Template ID."New value: +"Query string parameter — permission Template ID. Returns item(s) assiociated with the specified Permission Template ID." - changed
Input schema / properties / filters__trade_id__ / descriptionPrevious value: -"Returns users whose vendor record is associated with the specified trade id(s)."New value: +"Query string parameter — returns users whose vendor record is associated with the specified trade id(s)." - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs." - changed
Input schema / properties / grouped_by_vendor / descriptionPrevious value: -"Indicates whether users should be grouped by vendor."New value: +"Query string parameter — indicates whether users should be grouped by vendor." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / user_role / descriptionPrevious value: -"Indicates whether user_role should be included in PDF document."New value: +"Query string parameter — indicates whether user_role should be included in PDF document." - changed
Input schema / properties / vendor / descriptionPrevious value: -"Indicates whether vendor should be included in PDF document."New value: +"Query string parameter — indicates whether vendor should be included in PDF document."
- Changed
get_a_groups_projects13 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / created_after / descriptionPrevious value: -"Filters items created on or after the specified date (inclusive). Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items created on or after the specified date (inclusive). Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / created_at / descriptionPrevious value: -"Filters items based on their creation timestamp. Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items based on their creation timestamp. Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / created_before / descriptionPrevious value: -"Filters items created on or before the specified date (inclusive). Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items created on or before the specified date (inclusive). Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / custom_fields_integration_name / descriptionPrevious value: -"Filter results by a **Custom Field's** `integration_name`. This allows searching based on custom-defined attributes in the system. Example usage: `/v2/companies/{company_id}/...?my_custom_field=nor..."New value: +"Query string parameter — filter results by a **Custom Field's** `integration_name`. This allows searching based on custom-defined attributes in the system. Example usage: `/v2/companies/{company_id}/...?my_custom_field=nor..." - changed
Input schema / properties / group_id / descriptionPrevious value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group" - changed
Input schema / properties / name / descriptionPrevious value: -"Filters items by their exact name. The query performs an exact match. Example usage: `/v2/companies/{company_id}/...?name=Bridge+Restoration`\n"New value: +"Query string parameter — filters items by their exact name. The query performs an exact match. Example usage: `/v2/companies/{company_id}/...?name=Bridge+Restoration`\n" - changed
Input schema / properties / page / descriptionPrevious value: -"This is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..."New value: +"Query string parameter — this is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..." - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_number / descriptionPrevious value: -"Filters items by their exact project number. The query performs an exact match. Example usage: `/v2/companies/{company_id}/...?project_number=BR-2024`\n"New value: +"Query string parameter — filters items by their exact project number. The query performs an exact match. Example usage: `/v2/companies/{company_id}/...?project_number=BR-2024`\n" - changed
Input schema / properties / updated_after / descriptionPrevious value: -"Filters items updated on or after the specified date (inclusive). Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items updated on or after the specified date (inclusive). Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / updated_at / descriptionPrevious value: -"Filters items based on their last updated timestamp. Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items based on their last updated timestamp. Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / updated_before / descriptionPrevious value: -"Filters items updated on or before the specified date (inclusive). Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items updated on or before the specified date (inclusive). Accepts an ISO 8601 date string.\n"
- Added
get_a_list_of_inspection_item_evidence_configurations - Removed
get_a_list_of_inspection_item_evidence_configurations_v2_0 - Added
get_a_list_of_inspection_item_signature_requests - Removed
get_a_list_of_inspection_item_signature_requests_v2_0 - Changed
get_a_list_of_possible_assignees_for_an_rfi3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_a_list_of_possible_rfi_managers_for_an_rfi3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_a_list_of_possible_timesheet_creator_ids3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_a_list_of_possible_timesheet_creators3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_a_single_group4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / group_id / descriptionPrevious value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
get_a_single_job_title4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / job_title_id / descriptionPrevious value: -"Unique identifier for the Job Title."New value: +"URL path parameter — unique identifier for the Job Title." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
get_a_single_person4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / person_id / descriptionPrevious value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
- Changed
get_a_single_project4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
- Changed
get_a_single_resource_planning_tag4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / tag_id / descriptionPrevious value: -"Unique identifier for the tag."New value: +"URL path parameter — unique identifier for the tag."
- Added
get_a_workflow_instance_company - Removed
get_a_workflow_instance_company_v2_0 - Added
get_a_workflow_instance_project - Removed
get_a_workflow_instance_project_v2_0 - Added
get_a_workflow_template_version - Removed
get_a_workflow_template_version_v2_0 - Changed
get_accessible_groups_for_authenticated_user_by_context7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / context_type / descriptionPrevious value: -"context_type"New value: +"URL path parameter — the context type for this Document Markup operation" - changed
Input schema / properties / context_type_id / descriptionPrevious value: -"context_type_id"New value: +"URL path parameter — unique identifier of the context type" - changed
Input schema / properties / layer_id / descriptionPrevious value: -"layer_id"New value: +"Query string parameter — unique identifier of the layer" - changed
Input schema / properties / page / descriptionPrevious value: -"page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"per_page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
get_accessible_layers_for_authenticated_user_by_context6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / context_type / descriptionPrevious value: -"context_type"New value: +"URL path parameter — the context type for this Document Markup operation" - changed
Input schema / properties / context_type_id / descriptionPrevious value: -"context_type_id"New value: +"URL path parameter — unique identifier of the context type" - changed
Input schema / properties / page / descriptionPrevious value: -"page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"per_page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
- Added
get_active_reinspection - Removed
get_active_reinspection_v2_0 - Added
get_activity_by_id - Removed
get_activity_by_id_v2_0 - Added
get_activity_link_by_id - Removed
get_activity_link_by_id_v2_0 - Added
get_adjustment_and_adjustment_line_items_of_a_project - Removed
get_adjustment_and_adjustment_line_items_of_a_project_v2_0 - Added
get_advanced_forecasting_rows_of_a_project - Removed
get_advanced_forecasting_rows_of_a_project_v2_0 - Changed
get_affected_body_part_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_affected_body_parts3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
get_affected_company_filter_options_project3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_affected_company_filter_options_project_v1_03 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_affected_company_filter_options_project_v1_0_23 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_affected_company_filter_options_project_v1_0_43 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_affected_parties_filter_options_project3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_affected_parties_filter_options_project_v1_03 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_affected_persons_filter_options_project3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_affected_persons_filter_options_project_v1_03 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_affliction_type_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
get_all_attachments_for_equipment_company - Removed
get_all_attachments_for_equipment_company_v2_0 - Added
get_all_attachments_for_equipment_project - Removed
get_all_attachments_for_equipment_project_v2_0 - Added
get_all_bid_board_projects - Removed
get_all_bid_board_projects_v2_0 - Changed
get_all_company_groups3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
get_all_custom_fields3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Added
get_all_equipment_categories_company - Removed
get_all_equipment_categories_company_v2_0 - Added
get_all_equipment_categories_project - Removed
get_all_equipment_categories_project_v2_0 - Added
get_all_equipment_company - Removed
get_all_equipment_company_v2_0 - Removed
get_all_equipment_company_v2_1 - Added
get_all_equipment_ids_company - Removed
get_all_equipment_ids_company_v2_0 - Removed
get_all_equipment_ids_company_v2_1 - Added
get_all_equipment_maintenance_records_company - Removed
get_all_equipment_maintenance_records_company_v2_0 - Added
get_all_equipment_maintenance_records_project - Removed
get_all_equipment_maintenance_records_project_v2_0 - Added
get_all_equipment_makes_company - Removed
get_all_equipment_makes_company_v2_0 - Added
get_all_equipment_makes_project - Removed
get_all_equipment_makes_project_v2_0 - Added
get_all_equipment_models_company - Removed
get_all_equipment_models_company_v2_0 - Added
get_all_equipment_models_project - Removed
get_all_equipment_models_project_v2_0 - Added
get_all_equipment_statuses_company - Removed
get_all_equipment_statuses_company_v2_0 - Added
get_all_equipment_statuses_project - Removed
get_all_equipment_statuses_project_v2_0 - Added
get_all_equipment_types_company - Removed
get_all_equipment_types_company_v2_0 - Added
get_all_equipment_types_project - Removed
get_all_equipment_types_project_v2_0 - Changed
get_all_job_titles_belonging_to_a_group4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / group_id / descriptionPrevious value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
get_all_job_titles_in_the_company3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
get_all_people_belonging_to_a_company14 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / created_after / descriptionPrevious value: -"Filters items created on or after the specified date (inclusive). Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items created on or after the specified date (inclusive). Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / created_at / descriptionPrevious value: -"Filters items based on their creation timestamp. Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items based on their creation timestamp. Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / created_before / descriptionPrevious value: -"Filters items created on or before the specified date (inclusive). Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items created on or before the specified date (inclusive). Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / custom_fields_integration_name / descriptionPrevious value: -"Filter results by a **Custom Field's** `integration_name`. This allows searching based on custom-defined attributes in the system. Example usage: `/v2/companies/{company_id}/...?my_custom_field=nor..."New value: +"Query string parameter — filter results by a **Custom Field's** `integration_name`. This allows searching based on custom-defined attributes in the system. Example usage: `/v2/companies/{company_id}/...?my_custom_field=nor..." - changed
Input schema / properties / email / descriptionPrevious value: -"Filter results by the exact email address of the Person."New value: +"Query string parameter — filter results by the exact email address of the Person." - changed
Input schema / properties / employee_number / descriptionPrevious value: -"Filter results by the exact employee number of the Person."New value: +"Query string parameter — filter results by the exact employee number of the Person." - changed
Input schema / properties / first_name / descriptionPrevious value: -"Filter results by the exact first name of the Person."New value: +"Query string parameter — filter results by the exact first name of the Person." - changed
Input schema / properties / last_name / descriptionPrevious value: -"Filter results by the exact last name of the Person."New value: +"Query string parameter — filter results by the exact last name of the Person." - changed
Input schema / properties / page / descriptionPrevious value: -"This is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..."New value: +"Query string parameter — this is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..." - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / updated_after / descriptionPrevious value: -"Filters items updated on or after the specified date (inclusive). Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items updated on or after the specified date (inclusive). Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / updated_at / descriptionPrevious value: -"Filters items based on their last updated timestamp. Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items based on their last updated timestamp. Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / updated_before / descriptionPrevious value: -"Filters items updated on or before the specified date (inclusive). Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items updated on or before the specified date (inclusive). Accepts an ISO 8601 date string.\n"
- Changed
get_all_people_belonging_to_a_group15 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / created_after / descriptionPrevious value: -"Filters items created on or after the specified date (inclusive). Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items created on or after the specified date (inclusive). Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / created_at / descriptionPrevious value: -"Filters items based on their creation timestamp. Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items based on their creation timestamp. Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / created_before / descriptionPrevious value: -"Filters items created on or before the specified date (inclusive). Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items created on or before the specified date (inclusive). Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / custom_fields_integration_name / descriptionPrevious value: -"Filter results by a **Custom Field's** `integration_name`. This allows searching based on custom-defined attributes in the system. Example usage: `/v2/companies/{company_id}/...?my_custom_field=nor..."New value: +"Query string parameter — filter results by a **Custom Field's** `integration_name`. This allows searching based on custom-defined attributes in the system. Example usage: `/v2/companies/{company_id}/...?my_custom_field=nor..." - changed
Input schema / properties / email / descriptionPrevious value: -"Filter results by the exact email address of the Person."New value: +"Query string parameter — filter results by the exact email address of the Person." - changed
Input schema / properties / employee_number / descriptionPrevious value: -"Filter results by the exact employee number of the Person."New value: +"Query string parameter — filter results by the exact employee number of the Person." - changed
Input schema / properties / first_name / descriptionPrevious value: -"Filter results by the exact first name of the Person."New value: +"Query string parameter — filter results by the exact first name of the Person." - changed
Input schema / properties / group_id / descriptionPrevious value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group" - changed
Input schema / properties / last_name / descriptionPrevious value: -"Filter results by the exact last name of the Person."New value: +"Query string parameter — filter results by the exact last name of the Person." - changed
Input schema / properties / page / descriptionPrevious value: -"This is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..."New value: +"Query string parameter — this is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..." - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / updated_after / descriptionPrevious value: -"Filters items updated on or after the specified date (inclusive). Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items updated on or after the specified date (inclusive). Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / updated_at / descriptionPrevious value: -"Filters items based on their last updated timestamp. Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items based on their last updated timestamp. Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / updated_before / descriptionPrevious value: -"Filters items updated on or before the specified date (inclusive). Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items updated on or before the specified date (inclusive). Accepts an ISO 8601 date string.\n"
- Changed
get_all_resource_planning_tag_for_a_company3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
get_all_resource_planning_tag_for_a_group4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / group_id / descriptionPrevious value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
get_all_resource_requests_for_a_single_project4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / page / descriptionPrevious value: -"This is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..."New value: +"Query string parameter — this is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..." - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
- Changed
get_all_resource_requests_for_projects_in_a_single_group4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / group_id / descriptionPrevious value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group" - changed
Input schema / properties / page / descriptionPrevious value: -"This is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..."New value: +"Query string parameter — this is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..." - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
get_all_resource_requests_in_a_company3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / page / descriptionPrevious value: -"This is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..."New value: +"Query string parameter — this is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..." - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
get_all_time_off_for_a_single_person7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / limit / descriptionPrevious value: -"The number of time off records to be returned in a single request. Default is 40."New value: +"Query string parameter — the number of time off records to be returned in a single request. Default is 40." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / person_id / descriptionPrevious value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person" - changed
Input schema / properties / start_after / descriptionPrevious value: -"Time off ID used for pagination."New value: +"Query string parameter — time off ID used for pagination." - changed
Input schema / properties / timezone / descriptionPrevious value: -"The timezone in which to order time off entries."New value: +"Query string parameter — the timezone in which to order time off entries."
- Changed
get_assignee_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
get_bid_board_project_by_id - Removed
get_bid_board_project_by_id_v2_0 - Added
get_bid_board_project_custom_fields - Removed
get_bid_board_project_custom_fields_v2_0 - Added
get_budget_view_options - Removed
get_budget_view_options_v2_0 - Added
get_calendar_by_id - Removed
get_calendar_by_id_v2_0 - Added
get_catalogs - Removed
get_catalogs_v2_0 - Added
get_change_event_settings - Removed
get_change_event_settings_v2_0 - Changed
get_company_assignments11 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / created_after / descriptionPrevious value: -"Filters items created on or after the specified date (inclusive). Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items created on or after the specified date (inclusive). Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / created_at / descriptionPrevious value: -"Filters items based on their creation timestamp. Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items based on their creation timestamp. Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / created_before / descriptionPrevious value: -"Filters items created on or before the specified date (inclusive). Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items created on or before the specified date (inclusive). Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / dayRange / descriptionPrevious value: -"A value specifying how many days forward you would like to get assignments for from the specified startDay. Assignments whose start_day falls within the given range will be returned in the response..."New value: +"Query string parameter — a value specifying how many days forward you would like to get assignments for from the specified startDay. Assignments whose start_day falls within the given range will be returned in the response..." - changed
Input schema / properties / page / descriptionPrevious value: -"This is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..."New value: +"Query string parameter — this is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..." - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / start_day / descriptionPrevious value: -"The starting day to filter assignments by."New value: +"Query string parameter — the starting day to filter assignments by." - changed
Input schema / properties / updated_after / descriptionPrevious value: -"Filters items updated on or after the specified date (inclusive). Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items updated on or after the specified date (inclusive). Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / updated_at / descriptionPrevious value: -"Filters items based on their last updated timestamp. Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items based on their last updated timestamp. Accepts an ISO 8601 date string.\n" - changed
Input schema / properties / updated_before / descriptionPrevious value: -"Filters items updated on or before the specified date (inclusive). Accepts an ISO 8601 date string.\n"New value: +"Query string parameter — filters items updated on or before the specified date (inclusive). Accepts an ISO 8601 date string.\n"
- Changed
get_company_currency_configuration3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
get_company_exchange_rates3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Added
get_company_snapshots_summary - Removed
get_company_snapshots_summary_v2_0 - Changed
get_complete_layer_structure_by_context_type_and_type_id7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / context_type / descriptionPrevious value: -"context_type"New value: +"JSON request body field — the context type for this Document Markup operation" - changed
Input schema / properties / context_type_id / descriptionPrevious value: -"context_type_id"New value: +"JSON request body field — unique identifier of the context type" - changed
Input schema / properties / include_groups / descriptionPrevious value: -"include_groups"New value: +"JSON request body field — the include groups for this Document Markup operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / sub_context_type / descriptionPrevious value: -"sub_context_type"New value: +"JSON request body field — the sub context type for this Document Markup operation" - changed
Input schema / properties / sub_context_type_id / descriptionPrevious value: -"sub_context_type_id"New value: +"JSON request body field — unique identifier of the sub context type"
- Added
get_configurable_field_sets_company - Removed
get_configurable_field_sets_company_v2_0 - Added
get_configuration_for_uom_master_list - Removed
get_configuration_for_uom_master_list_v2_0 - Changed
get_context_by_id5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / context_id / descriptionPrevious value: -"context_id"New value: +"URL path parameter — unique identifier of the context" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
get_contexts10 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / filters__context_type_id / descriptionPrevious value: -"filters[context_type_id]"New value: +"Query string parameter — filters[context_type_id]" - changed
Input schema / properties / filters__created_before / descriptionPrevious value: -"filters[created_before]"New value: +"Query string parameter — filters[created_before]" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"filters[id]"New value: +"Query string parameter — filter results by id" - changed
Input schema / properties / filters__subcontext_type_id / descriptionPrevious value: -"filters[subcontext_type_id]"New value: +"Query string parameter — filters[subcontext_type_id]" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"filters[updated_at]"New value: +"Query string parameter — filter results by updated at" - changed
Input schema / properties / page / descriptionPrevious value: -"page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"per_page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / view / descriptionPrevious value: -"view"New value: +"Query string parameter — response detail level. Use 'normal' for standard fields or 'extended' for all fields"
- Changed
get_contracts_invoice_configuration4 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"ID of the Contract"New value: +"URL path parameter — unique identifier of the contract" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_contributing_behavior_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_contributing_condition_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
get_cost_item - Removed
get_cost_item_v2_0 - Added
get_cost_items - Removed
get_cost_items_v2_0 - Changed
get_current_company_assignments3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / page / descriptionPrevious value: -"This is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..."New value: +"Query string parameter — this is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..." - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Added
get_custom_field_data_types - Removed
get_custom_field_data_types_v2_0 - Changed
get_daily_log_headers_for_the_project5 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"The right boundary of requested date range"New value: +"Query string parameter — the right boundary of requested date range" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"The left boundary of requested date range"New value: +"Query string parameter — the left boundary of requested date range"
- Changed
get_environmental_type_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
get_equipment_by_id_company - Removed
get_equipment_by_id_company_v2_0 - Removed
get_equipment_by_id_company_v2_1 - Added
get_equipment_by_id_project - Removed
get_equipment_by_id_project_v2_1 - Added
get_equipment_by_project_project - Removed
get_equipment_by_project_project_v2_0 - Removed
get_equipment_by_project_project_v2_1 - Added
get_equipment_change_history_company - Removed
get_equipment_change_history_company_v2_0 - Added
get_equipment_ids_by_project_project - Removed
get_equipment_ids_by_project_project_v2_0 - Removed
get_equipment_ids_by_project_project_v2_1 - Added
get_equipment_maintenance_record_by_its_id_company - Removed
get_equipment_maintenance_record_by_its_id_company_v2_0 - Added
get_equipment_maintenance_record_by_its_id_project - Removed
get_equipment_maintenance_record_by_its_id_project_v2_0 - Added
get_equipment_projects_company - Removed
get_equipment_projects_company_v2_0 - Changed
get_export_options_for_existing_rfi4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"RFI ID"New value: +"URL path parameter — unique identifier of the RFI resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_file_by_its_uuid3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / uuid / descriptionPrevious value: -"UUID of the file"New value: +"URL path parameter — uUID of the file"
- Changed
get_filing_type_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_filing_types3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
get_group_assignments6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / dayRange / descriptionPrevious value: -"A value specifying how many days forward you would like to get assignments for from the specified startDay. Assignments whose start_day falls within the given range will be returned in the response..."New value: +"Query string parameter — a value specifying how many days forward you would like to get assignments for from the specified startDay. Assignments whose start_day falls within the given range will be returned in the response..." - changed
Input schema / properties / group_id / descriptionPrevious value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group" - changed
Input schema / properties / page / descriptionPrevious value: -"This is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..."New value: +"Query string parameter — this is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..." - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / start_day / descriptionPrevious value: -"The starting day to filter assignments by."New value: +"Query string parameter — the starting day to filter assignments by."
- Changed
get_group_by_id5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / group_id / descriptionPrevious value: -"group_id"New value: +"URL path parameter — unique identifier of the group" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
get_groups11 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / filters__context_id / descriptionPrevious value: -"filters[context_id]"New value: +"Query string parameter — filter results by context id" - changed
Input schema / properties / filters__context_type_id / descriptionPrevious value: -"filters[context_type_id]"New value: +"Query string parameter — filters[context_type_id]" - changed
Input schema / properties / filters__created_before / descriptionPrevious value: -"filters[created_before]"New value: +"Query string parameter — filters[created_before]" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"filters[id]"New value: +"Query string parameter — filter results by id" - changed
Input schema / properties / filters__subcontext_type_id / descriptionPrevious value: -"filters[subcontext_type_id]"New value: +"Query string parameter — filters[subcontext_type_id]" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"filters[updated_at]"New value: +"Query string parameter — filter results by updated at" - changed
Input schema / properties / page / descriptionPrevious value: -"page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"per_page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / view / descriptionPrevious value: -"view"New value: +"Query string parameter — response detail level. Use 'normal' for standard fields or 'extended' for all fields"
- Changed
get_groups_for_layer5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / layer_id / descriptionPrevious value: -"layer_id"New value: +"URL path parameter — unique identifier of the layer" - changed
Input schema / properties / page / descriptionPrevious value: -"page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"per_page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
get_harm_source_filter_options_project3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_harm_source_filter_options_project_v1_03 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_hazard_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
get_import_logs - Removed
get_import_logs_v2_0 - Added
get_import_status - Removed
get_import_status_v2_0 - Changed
get_incident_statuses3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
get_information_of_a_budget_change4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier of budget change"New value: +"URL path parameter — unique identifier of budget change" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_layer_by_id5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / layer_id / descriptionPrevious value: -"layer_id"New value: +"URL path parameter — unique identifier of the layer" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
get_layers11 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / filters__context_id / descriptionPrevious value: -"filters[context_id]"New value: +"Query string parameter — filter results by context id" - changed
Input schema / properties / filters__context_type_id / descriptionPrevious value: -"filters[context_type_id]"New value: +"Query string parameter — filters[context_type_id]" - changed
Input schema / properties / filters__created_before / descriptionPrevious value: -"filters[created_before]"New value: +"Query string parameter — filters[created_before]" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"filters[id]"New value: +"Query string parameter — filter results by id" - changed
Input schema / properties / filters__subcontext_type_id / descriptionPrevious value: -"filters[subcontext_type_id]"New value: +"Query string parameter — filters[subcontext_type_id]" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"filters[updated_at]"New value: +"Query string parameter — filter results by updated at" - changed
Input schema / properties / page / descriptionPrevious value: -"page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"per_page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / view / descriptionPrevious value: -"view"New value: +"Query string parameter — response detail level. Use 'normal' for standard fields or 'extended' for all fields"
- Changed
get_layers_for_context5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / context_id / descriptionPrevious value: -"context_id"New value: +"URL path parameter — unique identifier of the context" - changed
Input schema / properties / page / descriptionPrevious value: -"page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"per_page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
get_location_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_look_ahead_data14 fields changed- changed
Input schema / properties / assignmentCount / descriptionPrevious value: -"The number of future assignments to return per person."New value: +"Query string parameter — the number of future assignments to return per person." - changed
Input schema / properties / assignmentDuration / descriptionPrevious value: -"Whether to include a calculated duration for each assignment."New value: +"Query string parameter — whether to include a calculated duration for each assignment." - changed
Input schema / properties / assignmentEnd / descriptionPrevious value: -"Whether to include the assignment end date."New value: +"Query string parameter — whether to include the assignment end date." - changed
Input schema / properties / assignmentStart / descriptionPrevious value: -"Whether to include the assignment start date."New value: +"Query string parameter — whether to include the assignment start date." - changed
Input schema / properties / availableAfterDate / descriptionPrevious value: -"Whether to include the last day a person is assigned in the future."New value: +"Query string parameter — whether to include the last day a person is assigned in the future." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / employee_number / descriptionPrevious value: -"Filter results by the exact employee number of the Person."New value: +"Query string parameter — filter results by the exact employee number of the Person." - changed
Input schema / properties / group_id / descriptionPrevious value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group" - changed
Input schema / properties / jobTitle / descriptionPrevious value: -"Whether to include the person's Job Title."New value: +"Query string parameter — whether to include the person's Job Title." - changed
Input schema / properties / jobTitleIds / descriptionPrevious value: -"An array of UUIDs representing the Job Titles to include in the report. People with Job Titles not in this list will be excluded."New value: +"Query string parameter — an array of UUIDs representing the Job Titles to include in the report. People with Job Titles not in this list will be excluded." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / projectName / descriptionPrevious value: -"Whether to include the project name for each assignment."New value: +"Query string parameter — whether to include the project name for each assignment." - changed
Input schema / properties / project_number / descriptionPrevious value: -"Filters items by their exact project number. The query performs an exact match. Example usage: `/v2/companies/{company_id}/...?project_number=BR-2024`\n"New value: +"Query string parameter — filters items by their exact project number. The query performs an exact match. Example usage: `/v2/companies/{company_id}/...?project_number=BR-2024`\n"
- Changed
get_managed_equipment_filter_options_project3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_managed_equipment_filter_options_project_v1_03 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_managed_equipment_filter_options_project_v1_0_23 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_managed_equipment_filter_options_project_v1_0_43 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_markup_stamp6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / markup_id / descriptionPrevious value: -"markup_id"New value: +"URL path parameter — unique identifier of the markup" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / viewer_doc_id / descriptionPrevious value: -"viewer_doc_id"New value: +"URL path parameter — unique identifier of the viewer doc"
- Changed
get_my_open_items_statistics4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / tool_name / descriptionPrevious value: -"tool_name"New value: +"Query string parameter — the tool name for this Project-Level Configuration operation"
- Changed
get_next_available_number3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_next_available_number_by_spec_section4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / spec_section_id / descriptionPrevious value: -"Spec Section ID"New value: +"URL path parameter — unique identifier of the spec section"
- Removed
get_next_available_number_by_spec_section_v1_1 - Removed
get_next_available_number_v1_1 - Changed
get_observation_item_pdf_url4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Observation Item ID"New value: +"URL path parameter — unique identifier of the Observations resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
get_one_coordination_issue_viewpoint_model_manager_or_legacy7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / coordination_issue_id / descriptionPrevious value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID" - changed
Input schema / properties / included / descriptionPrevious value: -"**Ignored.** Legacy show always returns the full `BimViewpointBlueprint` `:procore_v0_1` payload.\n"New value: +"Query string parameter — **Ignored.** Legacy show always returns the full `BimViewpointBlueprint` `:procore_v0_1` payload.\n" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / viewpoint_id / descriptionPrevious value: -"**MM-backed:** Model Manager viewpoint UUID (`[0-9a-f-]{36}`, case-insensitive). **Legacy:** numeric\n`bim_viewpoints.id` for a join row that has `bim_viewpoint_id` (no `viewpoint_uuid`).\n"New value: +"URL path parameter — **MM-backed:** Model Manager viewpoint UUID (`[0-9a-f-]{36}`, case-insensitive). **Legacy:** numeric\n`bim_viewpoints.id` for a join row that has `bim_viewpoint_id` (no `viewpoint_uuid`).\n"
- Changed
get_open_items_statistics4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / tool_name / descriptionPrevious value: -"tool_name"New value: +"Query string parameter — the tool name for this Project-Level Configuration operation"
- Added
get_operation_details - Removed
get_operation_details_v2_0 - Changed
get_or_create_context_with_hierarchy8 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / context_type / descriptionPrevious value: -"context_type"New value: +"JSON request body field — the context type for this Document Markup operation" - changed
Input schema / properties / context_type_id / descriptionPrevious value: -"context_type_id"New value: +"JSON request body field — unique identifier of the context type" - changed
Input schema / properties / name / descriptionPrevious value: -"name"New value: +"JSON request body field — the name for this Document Markup operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / settings / descriptionPrevious value: -"settings"New value: +"JSON request body field — the settings for this Document Markup operation" - changed
Input schema / properties / sub_context_type / descriptionPrevious value: -"sub_context_type"New value: +"JSON request body field — the sub context type for this Document Markup operation" - changed
Input schema / properties / sub_context_type_id / descriptionPrevious value: -"sub_context_type_id"New value: +"JSON request body field — unique identifier of the sub context type"
- Changed
get_or_create_document_info_v1_16 fields changed- changed
Input schema / properties / attachment_id / descriptionPrevious value: -"attachment_id"New value: +"JSON request body field — unique identifier of the attachment" - changed
Input schema / properties / attachment_source / descriptionPrevious value: -"attachment_source"New value: +"JSON request body field — the attachment source for this Document Markup operation" - changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / item_id / descriptionPrevious value: -"item_id"New value: +"JSON request body field — unique identifier of the item" - changed
Input schema / properties / item_type / descriptionPrevious value: -"item_type"New value: +"JSON request body field — the item type for this Document Markup operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
get_or_refresh_an_access_token6 fields changed- changed
Input schema / properties / client_id / descriptionPrevious value: -"Client ID you were assigned when you registered your application."New value: +"JSON request body field — client ID you were assigned when you registered your application." - changed
Input schema / properties / client_secret / descriptionPrevious value: -"Client Secret you were assigned when you registered your application."New value: +"JSON request body field — client Secret you were assigned when you registered your application." - changed
Input schema / properties / code / descriptionPrevious value: -"Value of the `authorization_code` retrieved from the `/oauth/authorize` call. Only required when getting a new access code."New value: +"JSON request body field — value of the `authorization_code` retrieved from the `/oauth/authorize` call. Only required when getting a new access code." - changed
Input schema / properties / grant_type / descriptionPrevious value: -"Use the value `authorization_code` when getting a new access token. Use `refresh_token` when refreshing an existing access token. Use `client_credentials` when using a Procore Service Account for a..."New value: +"JSON request body field — use the value `authorization_code` when getting a new access token. Use `refresh_token` when refreshing an existing access token. Use `client_credentials` when using a Procore Service Account for a..." - changed
Input schema / properties / redirect_uri / descriptionPrevious value: -"The URI that the user will be redirected to after they grant authorization to your application. For browser-based web applications, use a `https://` web address. For \"headless\" applications use `ur..."New value: +"JSON request body field — the URI that the user will be redirected to after they grant authorization to your application. For browser-based web applications, use a `https://` web address. For \"headless\" applications use `ur..." - changed
Input schema / properties / refresh_token / descriptionPrevious value: -"The refresh token string. Only required when refreshing an access token."New value: +"JSON request body field — the refresh token string. Only required when refreshing an access token."
- Changed
get_permission_level_options3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
get_person_assignments6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / dayRange / descriptionPrevious value: -"A value specifying how many days forward you would like to get assignments for from the specified startDay. Assignments whose start_day falls within the given range will be returned in the response..."New value: +"Query string parameter — a value specifying how many days forward you would like to get assignments for from the specified startDay. Assignments whose start_day falls within the given range will be returned in the response..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / person_id / descriptionPrevious value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person" - changed
Input schema / properties / start_day / descriptionPrevious value: -"The starting day to filter assignments by."New value: +"Query string parameter — the starting day to filter assignments by."
- Changed
get_persons_assignment_history_data13 fields changed- changed
Input schema / properties / assignmentEnd / descriptionPrevious value: -"Whether to include the assignment end date."New value: +"Query string parameter — whether to include the assignment end date." - changed
Input schema / properties / assignmentStart / descriptionPrevious value: -"Whether to include the assignment start date."New value: +"Query string parameter — whether to include the assignment start date." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / cost_code / descriptionPrevious value: -"Will return the name and UUID of the Cost Code for each assignment."New value: +"Query string parameter — will return the name and UUID of the Cost Code for each assignment." - changed
Input schema / properties / duration / descriptionPrevious value: -"Will return a calculated duration for each listed assignment."New value: +"Query string parameter — will return a calculated duration for each listed assignment." - changed
Input schema / properties / end_time / descriptionPrevious value: -"Will return the daily end time for each assignment."New value: +"Query string parameter — will return the daily end time for each assignment." - changed
Input schema / properties / labels / descriptionPrevious value: -"Will return the name and UUID of the Label for each assignment."New value: +"Query string parameter — will return the name and UUID of the Label for each assignment." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / person_id / descriptionPrevious value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person" - changed
Input schema / properties / projectName / descriptionPrevious value: -"Whether to include the project name for each assignment."New value: +"Query string parameter — whether to include the project name for each assignment." - changed
Input schema / properties / project_number / descriptionPrevious value: -"Filters items by their exact project number. The query performs an exact match. Example usage: `/v2/companies/{company_id}/...?project_number=BR-2024`\n"New value: +"Query string parameter — filters items by their exact project number. The query performs an exact match. Example usage: `/v2/companies/{company_id}/...?project_number=BR-2024`\n" - changed
Input schema / properties / start_time / descriptionPrevious value: -"Will return the daily start time for each assignment."New value: +"Query string parameter — will return the daily start time for each assignment."
- Changed
get_project_assignments6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / dayRange / descriptionPrevious value: -"A value specifying how many days forward you would like to get assignments for from the specified startDay. Assignments whose start_day falls within the given range will be returned in the response..."New value: +"Query string parameter — a value specifying how many days forward you would like to get assignments for from the specified startDay. Assignments whose start_day falls within the given range will be returned in the response..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project" - changed
Input schema / properties / start_day / descriptionPrevious value: -"The starting day to filter assignments by."New value: +"Query string parameter — the starting day to filter assignments by."
- Added
get_project_budget_view_options - Removed
get_project_budget_view_options_v2_0 - Changed
get_project_currency_configuration4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
get_project_exchange_rates5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / include_inactive / descriptionPrevious value: -"Include inactive exchange rates"New value: +"Query string parameter — include inactive exchange rates" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
get_project_incident_configuration3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
get_project_task_by_id_company - Added
get_project_task_by_id_company_v2_0 - Removed
get_project_task_by_id_v2_0_company - Removed
get_project_task_by_id_v2_0_company_v2_0 - Added
get_project_tasks_company - Added
get_project_tasks_company_v2_0 - Removed
get_project_tasks_v2_0_company - Removed
get_project_tasks_v2_0_company_v2_0 - Changed
get_projects_assignment_history_data14 fields changed- changed
Input schema / properties / assignmentEnd / descriptionPrevious value: -"Whether to include the assignment end date."New value: +"Query string parameter — whether to include the assignment end date." - changed
Input schema / properties / assignmentStart / descriptionPrevious value: -"Whether to include the assignment start date."New value: +"Query string parameter — whether to include the assignment start date." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / cost_code / descriptionPrevious value: -"Will return the name and UUID of the Cost Code for each assignment."New value: +"Query string parameter — will return the name and UUID of the Cost Code for each assignment." - changed
Input schema / properties / duration / descriptionPrevious value: -"Will return a calculated duration for each listed assignment."New value: +"Query string parameter — will return a calculated duration for each listed assignment." - changed
Input schema / properties / employeeName / descriptionPrevious value: -"Determines whether the employee's name should be included in the response. If set to `true`, the response will include the person's first and last name. Default is `true`.\n"New value: +"Query string parameter — determines whether the employee's name should be included in the response. If set to `true`, the response will include the person's first and last name. Default is `true`.\n" - changed
Input schema / properties / employee_number / descriptionPrevious value: -"Filter results by the exact employee number of the Person."New value: +"Query string parameter — filter results by the exact employee number of the Person." - changed
Input schema / properties / end_time / descriptionPrevious value: -"Will return the daily end time for each assignment."New value: +"Query string parameter — will return the daily end time for each assignment." - changed
Input schema / properties / jobTitle / descriptionPrevious value: -"Whether to include the person's Job Title."New value: +"Query string parameter — whether to include the person's Job Title." - changed
Input schema / properties / labels / descriptionPrevious value: -"Will return the name and UUID of the Label for each assignment."New value: +"Query string parameter — will return the name and UUID of the Label for each assignment." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project" - changed
Input schema / properties / start_time / descriptionPrevious value: -"Will return the daily start time for each assignment."New value: +"Query string parameter — will return the daily start time for each assignment."
- Added
get_requisition_compliance_document - Removed
get_requisition_compliance_document_v2_0 - Changed
get_resource_planning_notification_profiles6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / limit / descriptionPrevious value: -"The number of Notification Profile records to return per page."New value: +"Query string parameter — the number of Notification Profile records to return per page." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / starting_after / descriptionPrevious value: -"Cursor for forward pagination. Pass the value of `pagination.next_starting_after` from the previous response to fetch the next page."New value: +"Query string parameter — cursor for forward pagination. Pass the value of `pagination.next_starting_after` from the previous response to fetch the next page." - changed
Input schema / properties / starting_before / descriptionPrevious value: -"Cursor for reverse pagination. Pass the value of `pagination.previous_starting_before` from the previous response to fetch the prior page."New value: +"Query string parameter — cursor for reverse pagination. Pass the value of `pagination.previous_starting_before` from the previous response to fetch the prior page."
- Changed
get_responsible_company_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_revisions4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Submittal ID"New value: +"URL path parameter — unique identifier of the Submittals resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
get_revisions_v1_1 - Added
get_schedule_by_id - Removed
get_schedule_by_id_v2_0 - Changed
get_schedule_import_processing_state3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_schedule_metadata3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_single_custom_field4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / field_id / descriptionPrevious value: -"UUID of the Custom Field."New value: +"URL path parameter — uUID of the Custom Field." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
get_single_time_off_record5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / person_id / descriptionPrevious value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person" - changed
Input schema / properties / time_off_id / descriptionPrevious value: -"The UUID of the Time Off record."New value: +"URL path parameter — the UUID of the Time Off record."
- Changed
get_stamps5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — the unique identifier of the company" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Query string parameter — page number for pagination (1-based)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Query string parameter — number of stamps to return per page" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — the unique identifier of the project" - added
Input schema / properties / search_textAdded value: +{ + "description": "Query string parameter — text to search for in stamp content", + "type": "string" +}
- Removed
get_stamps_v2_0 - Changed
get_status_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_tags_requiring_action_report8 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / employee_number / descriptionPrevious value: -"Filter results by the exact employee number of the Person."New value: +"Query string parameter — filter results by the exact employee number of the Person." - changed
Input schema / properties / group_id / descriptionPrevious value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group" - changed
Input schema / properties / jobTitle / descriptionPrevious value: -"Whether to include the person's Job Title."New value: +"Query string parameter — whether to include the person's Job Title." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / tagIds / descriptionPrevious value: -"Array of UUIDs representing the Tags you want to filter the report by. If not provided, the report includes all Tags available to the Group.\n"New value: +"Query string parameter — array of UUIDs representing the Tags you want to filter the report by. If not provided, the report includes all Tags available to the Group.\n" - changed
Input schema / properties / warningTags / descriptionPrevious value: -"Determines whether Tags within their expiration warning period should be included in the report. If set to `false`, only expired Tags will be included.\n"New value: +"Query string parameter — determines whether Tags within their expiration warning period should be included in the report. If set to `false`, only expired Tags will be included.\n"
- Changed
get_the_daily_log_header_via_date_or_id5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"The id of the requested Daily Log Header"New value: +"Query string parameter — the id of the requested Daily Log Header" - changed
Input schema / properties / log_date / descriptionPrevious value: -"The log date for the requested Daily Log Header"New value: +"Query string parameter — the log date for the requested Daily Log Header" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
get_the_minutes_and_date_created_for_all_parent_topics - Added
get_the_minutes_and_date_created_for_all_parent_topics_project - Added
get_the_minutes_and_date_created_for_all_parent_topics_v1_0 - Removed
get_the_minutes_and_date_created_for_all_parent_topics_v1_1 - Added
get_timeline_event_by_id - Removed
get_timeline_event_by_id_v2_0 - Changed
get_token_info2 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
get_total_workers_and_man_hours6 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific logs desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"
- Changed
get_units_of_measure3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Added
get_unmanaged_equipment_project - Removed
get_unmanaged_equipment_project_v2_0 - Changed
get_work_activity_filter_options_project3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_work_activity_filter_options_project_v1_03 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_work_activity_filter_options_project_v1_0_23 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_work_activity_filter_options_project_v1_0_43 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
get_workflow_data4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Submittal ID"New value: +"URL path parameter — unique identifier of the Submittals resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
get_workflow_data_v1_1 - Added
get_workflow_instance_history_company - Removed
get_workflow_instance_history_company_v2_0 - Added
get_workflow_instance_history_project - Removed
get_workflow_instance_history_project_v2_0 - Added
get_workflow_preset_company - Removed
get_workflow_preset_company_v2_0 - Added
get_workflow_preset_project - Removed
get_workflow_preset_project_v2_0 - Changed
gets_documents_attached_to_bid_package9 fields changed- changed
Input schema / properties / bid_package_id / descriptionPrevious value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / pdm_page / descriptionPrevious value: -"Page number for paginating PDM attachments"New value: +"Query string parameter — page number for paginating PDM attachments" - changed
Input schema / properties / pdm_per_page / descriptionPrevious value: -"Number of PDM attachments per page"New value: +"Query string parameter — number of PDM attachments per page" - changed
Input schema / properties / pdm_search / descriptionPrevious value: -"Search term to filter PDM attachments by document_revision_id"New value: +"Query string parameter — search term to filter PDM attachments by document_revision_id" - changed
Input schema / properties / pdm_sort_by / descriptionPrevious value: -"Field to sort PDM attachments by"New value: +"Query string parameter — field to sort PDM attachments by" - changed
Input schema / properties / pdm_sort_order / descriptionPrevious value: -"Sort order for PDM attachments"New value: +"Query string parameter — sort order for PDM attachments" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
grant_app_authorization5 fields changed- changed
Input schema / properties / client_id / descriptionPrevious value: -"Client ID you were assigned when you registered your application."New value: +"Query string parameter — client ID you were assigned when you registered your application." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / redirect_uri / descriptionPrevious value: -"The URI that the user will be redirected to after they grant authorization to your application. For browser-based web applications, use a `https://` web address. For \"headless\" applications use `ur..."New value: +"Query string parameter — the URI that the user will be redirected to after they grant authorization to your application. For browser-based web applications, use a `https://` web address. For \"headless\" applications use `ur..." - changed
Input schema / properties / response_type / descriptionPrevious value: -"Response type. Value should be `code` for server apps, `token` for client apps."New value: +"Query string parameter — response type. Value should be `code` for server apps, `token` for client apps."
- Changed
index_bid_forms8 fields changed- changed
Input schema / properties / bid_package_id / descriptionPrevious value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package" - changed
Input schema / properties / excluded_bid_form_id / descriptionPrevious value: -"Bid Form Id to exclude"New value: +"Query string parameter — bid Form Id to exclude" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / search / descriptionPrevious value: -"Search for a bid form"New value: +"Query string parameter — search for a bid form" - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter." - changed
Input schema / properties / view / descriptionPrevious value: -"View that enables Use Previous Bidders functionality and provides project and bid package name"New value: +"Query string parameter — view that enables Use Previous Bidders functionality and provides project and bid package name"
- Added
initiate_schedule_import - Removed
initiate_schedule_import_v2_0 - Added
it_fetches_a_budget_note - Removed
it_fetches_a_budget_note_v2_0 - Changed
list_accepted_weather_conditions_project3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_accepted_weather_conditions_project_v1_03 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_accident_logs9 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific logs desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Return item(s) created by the specified User ID"New value: +"Query string parameter — return item(s) created by the specified User ID" - changed
Input schema / properties / filters__daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter" - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Return item(s) with the specified Location IDs."New value: +"Query string parameter — return item(s) with the specified Location IDs." - changed
Input schema / properties / log_date / descriptionPrevious value: -"Date of specific logs desired in YYYY-MM-DD format"New value: +"Query string parameter — date of specific logs desired in YYYY-MM-DD format" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"
- Changed
list_action_plan_approvers6 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan ID(s)" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_action_plan_item_assignees9 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan ID(s)" - changed
Input schema / properties / filters__plan_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Item ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Item ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_action_plan_items26 fields changed- changed
Input schema / properties / filters__assignee_party_id_or_role_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Assignee party ID(s) or role ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan Assignee party ID(s) or role ID(s)" - changed
Input schema / properties / filters__attachment_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan reference attachment ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan reference attachment ID(s)" - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__drawing_revision_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan reference drawing revision ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan reference drawing revision ID(s)" - changed
Input schema / properties / filters__due_at / descriptionPrevious value: -"Return item(s) due within the specified date range."New value: +"Query string parameter — return item(s) due within the specified date range." - changed
Input schema / properties / filters__file_version_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan reference file version ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan reference file version ID(s)" - changed
Input schema / properties / filters__form_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan reference Form ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan reference Form ID(s)" - changed
Input schema / properties / filters__generic_tool_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan reference Generic Tool Item ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan reference Generic Tool Item ID(s)" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__meeting_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan reference Meeting ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan reference Meeting ID(s)" - changed
Input schema / properties / filters__observation_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan reference Observation Item ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan reference Observation Item ID(s)" - changed
Input schema / properties / filters__plan_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan ID(s)" - changed
Input schema / properties / filters__plan_section_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Section(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Section(s)." - changed
Input schema / properties / filters__plan_test_record_request_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Test Record Request ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Test Record Request ID(s)." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__record_checklist_template_id / descriptionPrevious value: -"Return item(s) with the specified checklist template id."New value: +"Query string parameter — return item(s) with the specified checklist template id." - changed
Input schema / properties / filters__record_generic_tool_id / descriptionPrevious value: -"Return item(s) with the specified Generic Tool ID."New value: +"Query string parameter — return item(s) with the specified Generic Tool ID." - changed
Input schema / properties / filters__reference_type / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan reference type(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan reference type(s)" - changed
Input schema / properties / filters__specification_section_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan reference specification section id ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan reference specification section id ID(s)" - changed
Input schema / properties / filters__status_id / descriptionPrevious value: -"Array of Status IDs. A single Status ID is also accepted."New value: +"Query string parameter — array of Status IDs. A single Status ID is also accepted." - changed
Input schema / properties / filters__submittal_log_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan reference submittal log ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan reference submittal log ID(s)" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / filters__verification_method_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Assignee verification method ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan Assignee verification method ID(s)" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_action_plan_parties6 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction of sorting param (name) is in desc order of full name"New value: +"Query string parameter — direction of sorting param (name) is in desc order of full name"
- Changed
list_action_plan_receivers6 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan ID(s)" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_action_plan_references9 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan ID(s)" - changed
Input schema / properties / filters__plan_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Item ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Item ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_action_plan_sections8 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan ID(s)" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view (which attributes) of the Action Plan Section is going to be present in the response.\n- `normal` (default): Returns standard Action Plan Section attributes\n- `extended`: Return..."New value: +"Query string parameter — specifies which view (which attributes) of the Action Plan Section is going to be present in the response.\n- `normal` (default): Returns standard Action Plan Section attributes\n- `extended`: Return..."
- Changed
list_action_plan_template_approvers5 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return section(s) associated with the specified Action Plan Template ID(s)."New value: +"Query string parameter — return section(s) associated with the specified Action Plan Template ID(s)." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_action_plan_template_item_assignees9 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return section(s) associated with the specified Action Plan Template ID(s)."New value: +"Query string parameter — return section(s) associated with the specified Action Plan Template ID(s)." - changed
Input schema / properties / filters__plan_template_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template Item ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template Item ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_action_plan_template_receivers6 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return section(s) associated with the specified Action Plan Template ID(s)."New value: +"Query string parameter — return section(s) associated with the specified Action Plan Template ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_action_plan_test_record_requests10 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan ID(s)" - changed
Input schema / properties / filters__plan_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Item ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Item ID(s)." - changed
Input schema / properties / filters__type / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Test Record Type(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Test Record Type(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_action_plan_test_records11 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan ID(s)" - changed
Input schema / properties / filters__plan_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Item ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Item ID(s)." - changed
Input schema / properties / filters__plan_test_record_request_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Test Record Request ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Test Record Request ID(s)." - changed
Input schema / properties / filters__type / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Test Record Types."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Test Record Types." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_action_plan_verification_methods8 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__active / descriptionPrevious value: -"If true, returns item(s) with a status of 'active'."New value: +"Query string parameter — if true, returns item(s) with a status of 'active'." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_action_plans12 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__include_sublocations / descriptionPrevious value: -"Use together with `filters[location_id]`\n"New value: +"Query string parameter — use together with `filters[location_id]`\n" - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Location ID. Returns item(s) with the specified Location ID or a range of Location IDs."New value: +"Query string parameter — location ID. Returns item(s) with the specified Location ID or a range of Location IDs." - changed
Input schema / properties / filters__manager_id / descriptionPrevious value: -"Return item(s) with a specific Manager ID or a range of Manager ID(s)."New value: +"Query string parameter — return item(s) with a specific Manager ID or a range of Manager ID(s)." - changed
Input schema / properties / filters__plan_type_id / descriptionPrevious value: -"Action Plan Type ID. Returns item(s) with the specified Action Plan Type ID(s)."New value: +"Query string parameter — action Plan Type ID. Returns item(s) with the specified Action Plan Type ID(s)." - changed
Input schema / properties / filters__template_id / descriptionPrevious value: -"Return Action Plan(s) associated with the specified Action Plan Template ID(s)."New value: +"Query string parameter — return Action Plan(s) associated with the specified Action Plan Template ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_actions8 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing query"New value: +"Query string parameter — return item(s) containing query" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID. When provided, the list will be scoped to only the Actions for a given Incident."New value: +"Query string parameter — incident ID. When provided, the list will be scoped to only the Actions for a given Incident." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Added
list_activities - Removed
list_activities_v2_0 - Added
list_activity_links - Removed
list_activity_links_v2_0 - Changed
list_affliction_types7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__active / descriptionPrevious value: -"If true, returns item(s) with a status of 'active'."New value: +"Query string parameter — if true, returns item(s) with a status of 'active'." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Affliction Types"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_all_actual_production_quantities10 fields changed- changed
Input schema / properties / filters__crew_id / descriptionPrevious value: -"Crew ID. Returns item(s) with the specified Crew ID."New value: +"Query string parameter — crew ID. Returns item(s) with the specified Crew ID." - changed
Input schema / properties / filters__date / descriptionPrevious value: -"Returns item(s) within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Location ID. Returns item(s) with the specified Location ID or a range of Location IDs."New value: +"Query string parameter — location ID. Returns item(s) with the specified Location ID or a range of Location IDs." - changed
Input schema / properties / filters__timesheet_id / descriptionPrevious value: -"Timesheet ID. Returns item(s) with the specified Timesheet ID."New value: +"Query string parameter — timesheet ID. Returns item(s) with the specified Timesheet ID." - changed
Input schema / properties / filters__unit_of_measure / descriptionPrevious value: -"Return item(s) with the specified unit of measure."New value: +"Query string parameter — return item(s) with the specified unit of measure." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_all_attachments3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_all_available_permission_templates_for_a_project4 fields changed- changed
Input schema / properties / filters__assignables_only / descriptionPrevious value: -"Returns user's assignable permission templates"New value: +"Query string parameter — returns user's assignable permission templates" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_all_classification4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / serializer_view / descriptionPrevious value: -"The data set that should be returned from the serializer. Default view is normal."New value: +"Query string parameter — the data set that should be returned from the serializer. Default view is normal."
- Changed
list_all_classifications3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_all_company_managed_equipment_user_permissions3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_all_direct_cost_line_items9 fields changed- changed
Input schema / properties / filters__cost_code_id / descriptionPrevious value: -"Cost Code ID. Returns item(s) with the specified Cost Code ID or within the specified range of Cost Code IDs."New value: +"Query string parameter — cost Code ID. Returns item(s) with the specified Cost Code ID or within the specified range of Cost Code IDs." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__direct_cost_id / descriptionPrevious value: -"Return item(s) with the specified Direct Cost ID or range of Direct Cost IDs."New value: +"Query string parameter — return item(s) with the specified Direct Cost ID or range of Direct Cost IDs." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__line_item_type_id / descriptionPrevious value: -"Line Item Type ID. Returns item(s) with the specified Line Item Type ID or range of Line Item Type IDs."New value: +"Query string parameter — line Item Type ID. Returns item(s) with the specified Line Item Type ID or range of Line Item Type IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_all_equipment_categories3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_all_equipment_company15 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__company_visible / descriptionPrevious value: -"If true, return item(s) with 'company visible' status."New value: +"Query string parameter — if true, return item(s) with 'company visible' status." - changed
Input schema / properties / filters__current_project_id / descriptionPrevious value: -"Return item(s) with the specified current project ID."New value: +"Query string parameter — return item(s) with the specified current project ID." - changed
Input schema / properties / filters__last_service_date / descriptionPrevious value: -"Return item(s) with a last service date within the specified ISO 8601 datetime range."New value: +"Query string parameter — return item(s) with a last service date within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__managed_equipment_category_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment Category ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment Category ID." - changed
Input schema / properties / filters__managed_equipment_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID." - changed
Input schema / properties / filters__managed_equipment_make_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment Make ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment Make ID." - changed
Input schema / properties / filters__managed_equipment_model_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment Model ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment Model ID." - changed
Input schema / properties / filters__managed_equipment_type_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment Type ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment Type ID." - changed
Input schema / properties / filters__next_service_date / descriptionPrevious value: -"Return item(s) with a next service date within the specified ISO 8601 datetime range."New value: +"Query string parameter — return item(s) with a next service date within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / filters__year / descriptionPrevious value: -"Return item(s) with the specified year."New value: +"Query string parameter — return item(s) with the specified year." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_all_equipment_logs3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_all_equipment_makes4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_all_equipment_models4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_all_equipment_project20 fields changed- changed
Input schema / properties / filters__company_visible / descriptionPrevious value: -"If true, return item(s) with 'company visible' status."New value: +"Query string parameter — if true, return item(s) with 'company visible' status." - changed
Input schema / properties / filters__current_project_id / descriptionPrevious value: -"Return item(s) with the specified current project ID."New value: +"Query string parameter — return item(s) with the specified current project ID." - changed
Input schema / properties / filters__induction_status / descriptionPrevious value: -"Returns item(s) with the specified inudction status."New value: +"Query string parameter — returns item(s) with the specified inudction status." - changed
Input schema / properties / filters__last_service_date / descriptionPrevious value: -"Return item(s) with a last service date within the specified ISO 8601 datetime range."New value: +"Query string parameter — return item(s) with a last service date within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__managed_equipment_category_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment Category ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment Category ID." - changed
Input schema / properties / filters__managed_equipment_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID." - changed
Input schema / properties / filters__managed_equipment_make_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment Make ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment Make ID." - changed
Input schema / properties / filters__managed_equipment_model_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment Model ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment Model ID." - changed
Input schema / properties / filters__managed_equipment_type_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment Type ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment Type ID." - changed
Input schema / properties / filters__next_service_date / descriptionPrevious value: -"Return item(s) with a next service date within the specified ISO 8601 datetime range."New value: +"Query string parameter — return item(s) with a next service date within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__offsite / descriptionPrevious value: -"Offsite Dates. Returns item(s) with the specified range of offsite dates."New value: +"Query string parameter — offsite Dates. Returns item(s) with the specified range of offsite dates." - changed
Input schema / properties / filters__onsite / descriptionPrevious value: -"Onsite Dates. Returns item(s) with the specified range of onsite dates."New value: +"Query string parameter — onsite Dates. Returns item(s) with the specified range of onsite dates." - changed
Input schema / properties / filters__ownership / descriptionPrevious value: -"Returns only item(s) with the specified ownership value. Must be one of Owned, Rented, or Sub."New value: +"Query string parameter — returns only item(s) with the specified ownership value. Must be one of Owned, Rented, or Sub." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Return item(s) with the specified Vendor ID."New value: +"Query string parameter — return item(s) with the specified Vendor ID." - changed
Input schema / properties / filters__year / descriptionPrevious value: -"Return item(s) with the specified year."New value: +"Query string parameter — return item(s) with the specified year." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_all_equipment_types3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_all_maintenance_logs_attachment4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
list_all_prime_contracts5 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_all_project_budgeted_production_quantities4 fields changed- changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_all_project_budgeted_production_quantity_ids4 fields changed- changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_all_project_crew_ids4 fields changed- changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_all_project_crews4 fields changed- changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_all_project_equipment_ids4 fields changed- changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
list_all_submittal_attachments_with_download_urls - Removed
list_all_submittal_attachments_with_download_urls_v1_1 - Changed
list_all_time_and_material_entry3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_all_time_and_material_entry_configurable_field_sets3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_all_time_and_material_entry_matching_the_search_keyword2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / search_keyword / descriptionPrevious value: -"Keyword for looking up Time And Material Entries"New value: +"Query string parameter — keyword for looking up Time And Material Entries"
- Changed
list_all_timesheets6 fields changed- changed
Input schema / properties / filters__date / descriptionPrevious value: -"Returns item(s) within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__deleted_at / descriptionPrevious value: -"Returns item(s) deleted within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) deleted within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_alternative_response_sets3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
list_app_configurations6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__app_installation_id / descriptionPrevious value: -"App installation ID"New value: +"Query string parameter — filter results by app installation id" - changed
Input schema / properties / filters__project_id / descriptionPrevious value: -"Project ID"New value: +"Query string parameter — filter results by project id" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_app_installations_v1_05 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / developer_app_id / descriptionPrevious value: -"Developer App ID"New value: +"Query string parameter — unique identifier of the developer app" - changed
Input schema / properties / implicit / descriptionPrevious value: -"False if the request was made via API, true if it was made on attempting to authenticate an app\n"New value: +"Query string parameter — false if the request was made via API, true if it was made on attempting to authenticate an app\n" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
list_app_installations_v1_0_24 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the company. You must supply either a company_id or project_id." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the project. You must supply either a company_id or project_id."
- Changed
list_assignable_users4 fields changed- changed
Input schema / properties / filters__search / descriptionPrevious value: -"Search query"New value: +"Query string parameter — filter results by search" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_assignee_company_filter_options5 fields changed- changed
Input schema / properties / filters__bim_file_id / descriptionPrevious value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids" - changed
Input schema / properties / locale / descriptionPrevious value: -"The locale in which you need the link to your translation file. \nEnsure it is one of the procore available locales."New value: +"Query string parameter — the locale in which you need the link to your translation file. \nEnsure it is one of the procore available locales." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_assignee_filter_options5 fields changed- changed
Input schema / properties / filters__bim_file_id / descriptionPrevious value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids" - changed
Input schema / properties / locale / descriptionPrevious value: -"The locale in which you need the link to your translation file. \nEnsure it is one of the procore available locales."New value: +"Query string parameter — the locale in which you need the link to your translation file. \nEnsure it is one of the procore available locales." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_assignees_for_accessible_tasks3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_available_checklist_item_types4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_available_filters_for_coordination_issues4 fields changed- changed
Input schema / properties / locale / descriptionPrevious value: -"The locale in which you need the link to your translation file. \nEnsure it is one of the procore available locales."New value: +"Query string parameter — the locale in which you need the link to your translation file. \nEnsure it is one of the procore available locales." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_available_observation_item_statuses_with_localized_labels4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Observation Item ID. When provided, returns only statuses the user can set for this specific observation item based on their permissions."New value: +"Query string parameter — observation Item ID. When provided, returns only statuses the user can set for this specific observation item based on their permissions." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_available_rfi_assigned_id_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_available_rfi_ball_in_court_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_available_rfi_cost_code_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_available_rfi_filters3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_available_rfi_prefix_stage_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_available_rfi_priority_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_available_rfi_received_from_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_available_rfi_responsible_contractor_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_available_rfi_rfi_manager_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_available_rfi_status_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_available_rfi_sub_job_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_available_rfis_locations3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
list_available_status_transitions - Removed
list_available_status_transitions_v2_0 - Changed
list_available_submittal_filters3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_bid_contacts10 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__origin_id / descriptionPrevious value: -"Origin ID. Returns item(s) with the specified Origin ID."New value: +"Query string parameter — origin ID. Returns item(s) with the specified Origin ID." - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Return users where the search string matches the user's first name, last name, email address, keywords, job title, or company name"New value: +"Query string parameter — return users where the search string matches the user's first name, last name, email address, keywords, job title, or company name" - changed
Input schema / properties / filters__trade_id__ / descriptionPrevious value: -"Returns users whose vendor record is associated with the specified trade id(s)."New value: +"Query string parameter — returns users whose vendor record is associated with the specified trade id(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort."
- Removed
list_bid_packages - Added
list_bid_packages_company - Added
list_bid_packages_project - Removed
list_bid_packages_v1_1 - Changed
list_bid_uploads4 fields changed- changed
Input schema / properties / bid_id / descriptionPrevious value: -"Bid ID"New value: +"URL path parameter — unique identifier of the bid" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
list_bids_within_a_bid_package4 fields changed- changed
Input schema / properties / bid_package_id / descriptionPrevious value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_bids_within_a_company3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_bids_within_a_project3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_billing_periods7 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Return item(s) with the specified Billing Period status."New value: +"Query string parameter — return item(s) with the specified Billing Period status." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_bim_file_extractions11 fields changed- changed
Input schema / properties / filters__bim_file_id / descriptionPrevious value: -"Return item(s) with the specified bim_file_id in bim_file_upload"New value: +"Query string parameter — return item(s) with the specified bim_file_id in bim_file_upload" - changed
Input schema / properties / filters__bim_file_upload_id / descriptionPrevious value: -"Return item(s) with the specified bim_file_upload_id"New value: +"Query string parameter — return item(s) with the specified bim_file_upload_id" - changed
Input schema / properties / filters__document_revision_id / descriptionPrevious value: -"Return item(s) with the specified document_revision_id in bim_file_upload"New value: +"Query string parameter — return item(s) with the specified document_revision_id in bim_file_upload" - changed
Input schema / properties / filters__document_upload_id / descriptionPrevious value: -"Return item(s) with the specified document_upload_id in bim_file_upload"New value: +"Query string parameter — return item(s) with the specified document_upload_id in bim_file_upload" - changed
Input schema / properties / filters__extraction_format / descriptionPrevious value: -"Filter item(s) with matching extraction format"New value: +"Query string parameter — filter item(s) with matching extraction format" - changed
Input schema / properties / filters__file_version_id / descriptionPrevious value: -"Return item(s) with the specified file_version_id in bim_file_upload"New value: +"Query string parameter — return item(s) with the specified file_version_id in bim_file_upload" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Filter item(s) with matching status"New value: +"Query string parameter — filter item(s) with matching status" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_bim_files5 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe normal and extended view contains the response shown below.\nThe default view is normal."New value: +"Query string parameter — the compact view contains only ids.\nThe normal and extended view contains the response shown below.\nThe default view is normal."
- Changed
list_bim_levels8 fields changed- changed
Input schema / properties / filters__bim_file_id / descriptionPrevious value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Location ID. Returns item(s) with the specified Location ID or a range of Location IDs."New value: +"Query string parameter — location ID. Returns item(s) with the specified Location ID or a range of Location IDs." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Sort item(s) by an attribute. The default sort is ascending. To sort in descending order, prepend the sort value with a hyphen character '-'"New value: +"Query string parameter — sort item(s) by an attribute. The default sort is ascending. To sort in descending order, prepend the sort value with a hyphen character '-'" - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view contains 'bim_file_id', 'location_id', and 'created_by_id' instead of embedded objects.\nThe ..."New value: +"Query string parameter — the compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view contains 'bim_file_id', 'location_id', and 'created_by_id' instead of embedded objects.\nThe ..."
- Changed
list_bim_model_change_history5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"BIM Model ID"New value: +"URL path parameter — unique identifier of the BIM resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The extended view provides what is shown below.\nThe normal view is the same as the extended view but excludes attribute created_by.\nThe compact view returns ids only.\nThe default view is normal."New value: +"Query string parameter — the extended view provides what is shown below.\nThe normal view is the same as the extended view but excludes attribute created_by.\nThe compact view returns ids only.\nThe default view is normal."
- Changed
list_bim_model_revision_objects6 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Filter item(s) containing query. Searchable fields include Object Value"New value: +"Query string parameter — filter item(s) containing query. Searchable fields include Object Value" - changed
Input schema / properties / id / descriptionPrevious value: -"BIM Model Revision ID"New value: +"URL path parameter — bIM Model Revision ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_bim_model_revision_plans8 fields changed- changed
Input schema / properties / filters__bim_level_id / descriptionPrevious value: -"Filter item(s) with matching BIM Level ids"New value: +"Query string parameter — filter item(s) with matching BIM Level ids" - changed
Input schema / properties / filters__bim_model_revision_id / descriptionPrevious value: -"Filter item(s) with matching Bim Model Revision ids."New value: +"Query string parameter — filter item(s) with matching Bim Model Revision ids." - changed
Input schema / properties / filters__bim_plan_id / descriptionPrevious value: -"Filter item(s) with matching BIM Plan ids"New value: +"Query string parameter — filter item(s) with matching BIM Plan ids" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view contains 'bim_plan_id' and 'bim_level_id' instead of objects.\nThe default view is normal."New value: +"Query string parameter — the compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view contains 'bim_plan_id' and 'bim_level_id' instead of objects.\nThe default view is normal."
- Changed
list_bim_model_revision_properties11 fields changed- changed
Input schema / properties / filters__category / descriptionPrevious value: -"Filter item(s) with matching category."New value: +"Query string parameter — filter item(s) with matching category." - changed
Input schema / properties / filters__curated_list / descriptionPrevious value: -"Filter item(s) to return a curated list of properties"New value: +"Query string parameter — filter item(s) to return a curated list of properties" - changed
Input schema / properties / filters__has_uom / descriptionPrevious value: -"Filter item(s) to return properties with/without unit of measurement (uom)."New value: +"Query string parameter — filter item(s) to return properties with/without unit of measurement (uom)." - changed
Input schema / properties / filters__name / descriptionPrevious value: -"Filter item(s) with matching name."New value: +"Query string parameter — filter item(s) with matching name." - changed
Input schema / properties / filters__object_id / descriptionPrevious value: -"Filter item(s) with matching object_id."New value: +"Query string parameter — filter item(s) with matching object_id." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Filter item(s) containing query. Searchable fields include Property Category, Name, and Value"New value: +"Query string parameter — filter item(s) containing query. Searchable fields include Property Category, Name, and Value" - changed
Input schema / properties / filters__value / descriptionPrevious value: -"Filter item(s) with matching value."New value: +"Query string parameter — filter item(s) with matching value." - changed
Input schema / properties / id / descriptionPrevious value: -"BIM Model Revision ID"New value: +"URL path parameter — bIM Model Revision ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_bim_model_revision_viewpoints9 fields changed- changed
Input schema / properties / filters__bim_model_revision_id / descriptionPrevious value: -"Filter item(s) with matching Bim Model Revision ids."New value: +"Query string parameter — filter item(s) with matching Bim Model Revision ids." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__primary / descriptionPrevious value: -"Filter items by primary flag"New value: +"Query string parameter — filter items by primary flag" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Filter item(s) within a specific updated at iso8601 datetime range."New value: +"Query string parameter — filter item(s) within a specific updated at iso8601 datetime range." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view contains bim_viewpoint_id instead of object.\nThe default view is normal."New value: +"Query string parameter — the compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view contains bim_viewpoint_id instead of object.\nThe default view is normal." - changed
Input schema / properties / viewpoint_format / descriptionPrevious value: -"Specify viewpoint data format. This parameter functions only when the query parameter view is 'extended'\nThe default format returns the viewpoint content as saved.\nThe procore format returns the vi..."New value: +"Query string parameter — specify viewpoint data format. This parameter functions only when the query parameter view is 'extended'\nThe default format returns the viewpoint content as saved.\nThe procore format returns the vi..."
- Changed
list_bim_model_revisions9 fields changed- changed
Input schema / properties / filters__bim_file_id / descriptionPrevious value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids" - changed
Input schema / properties / filters__bim_model_id / descriptionPrevious value: -"Filter item(s) with matching Bim Model ids."New value: +"Query string parameter — filter item(s) with matching Bim Model ids." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__publish_status / descriptionPrevious value: -"Filter item(s) by publish status"New value: +"Query string parameter — filter item(s) by publish status" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Sort item(s) by an attribute. The default sort is ascending. To sort in descending order, prepend the sort value with a hyphen character '-'"New value: +"Query string parameter — sort item(s) by an attribute. The default sort is ascending. To sort in descending order, prepend the sort value with a hyphen character '-'" - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe normal view does not include the attribute 'published_model', and contains 'bim_gridline_id' instead of object.\nThe extended view contains the response shown..."New value: +"Query string parameter — the compact view contains only ids.\nThe normal view does not include the attribute 'published_model', and contains 'bim_gridline_id' instead of object.\nThe extended view contains the response shown..."
- Changed
list_bim_models9 fields changed- changed
Input schema / properties / filters__bim_file_id / descriptionPrevious value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids" - changed
Input schema / properties / filters__has_revisions / descriptionPrevious value: -"Filter item(s) with or without revisions."New value: +"Query string parameter — filter item(s) with or without revisions." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Filter item(s) with the matching search query. The search is performed on title."New value: +"Query string parameter — filter item(s) with the matching search query. The search is performed on title." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Sort item(s) by an attribute. The default sort is ascending. To sort in descending order, prepend the sort value with a hyphen character '-'"New value: +"Query string parameter — sort item(s) by an attribute. The default sort is ascending. To sort in descending order, prepend the sort value with a hyphen character '-'" - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view contains 'current_revision_id' instead of an embedded object 'current_revision'\nThe default ..."New value: +"Query string parameter — the compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view contains 'current_revision_id' instead of an embedded object 'current_revision'\nThe default ..."
- Changed
list_bim_plans6 fields changed- changed
Input schema / properties / filters__bim_level_id / descriptionPrevious value: -"Filter item(s) with matching BIM Level ids"New value: +"Query string parameter — filter item(s) with matching BIM Level ids" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view does not contain the attributes 'image', 'sheet_map_start', 'sheet_map_end', 'model_map_star..."New value: +"Query string parameter — the compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view does not contain the attributes 'image', 'sheet_map_start', 'sheet_map_end', 'model_map_star..."
- Changed
list_bim_property_file_objects7 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Filter item(s) containing query. Searchable fields include Object Value"New value: +"Query string parameter — filter item(s) containing query. Searchable fields include Object Value" - changed
Input schema / properties / id / descriptionPrevious value: -"BIM Property File ID."New value: +"URL path parameter — bIM Property File ID." - changed
Input schema / properties / object_search_id / descriptionPrevious value: -"Object search id"New value: +"Query string parameter — unique identifier of the object search" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_bim_property_file_properties11 fields changed- changed
Input schema / properties / filters__category / descriptionPrevious value: -"Filter item(s) with matching category."New value: +"Query string parameter — filter item(s) with matching category." - changed
Input schema / properties / filters__curated_list / descriptionPrevious value: -"Filter item(s) to return a curated list of properties"New value: +"Query string parameter — filter item(s) to return a curated list of properties" - changed
Input schema / properties / filters__has_uom / descriptionPrevious value: -"Filter item(s) to return properties with/without unit of measurement (uom)."New value: +"Query string parameter — filter item(s) to return properties with/without unit of measurement (uom)." - changed
Input schema / properties / filters__name / descriptionPrevious value: -"Filter item(s) with matching name."New value: +"Query string parameter — filter item(s) with matching name." - changed
Input schema / properties / filters__object_id / descriptionPrevious value: -"Filter item(s) with matching object_id."New value: +"Query string parameter — filter item(s) with matching object_id." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Filter item(s) containing query. Searchable fields include Property Category, Name, and Value"New value: +"Query string parameter — filter item(s) containing query. Searchable fields include Property Category, Name, and Value" - changed
Input schema / properties / filters__value / descriptionPrevious value: -"Filter item(s) with matching value."New value: +"Query string parameter — filter item(s) with matching value." - changed
Input schema / properties / id / descriptionPrevious value: -"BIM Property File ID."New value: +"URL path parameter — bIM Property File ID." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_bim_view_folders6 fields changed- changed
Input schema / properties / filters__bim_file_id / descriptionPrevious value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__parent_id / descriptionPrevious value: -"Filter item(s) with matching parent_id"New value: +"Query string parameter — filter item(s) with matching parent_id" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_body_parts7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__selectable / descriptionPrevious value: -"If true, return item(s) with 'selectable' status."New value: +"Query string parameter — if true, return item(s) with 'selectable' status." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Body Parts"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_budget_change_summaries4 fields changed- changed
Input schema / properties / exclude_custom_fields / descriptionPrevious value: -"When true, omits custom_fields from each summary row for faster response."New value: +"Query string parameter — when true, omits custom_fields from each summary row for faster response." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_budget_detail_columns4 fields changed- changed
Input schema / properties / budget_view_id / descriptionPrevious value: -"Budget View ID"New value: +"URL path parameter — unique identifier of the budget view" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_budget_detail_filter_options4 fields changed- changed
Input schema / properties / column_id / descriptionPrevious value: -"Type of filter options to return"New value: +"Query string parameter — type of filter options to return" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_budget_details8 fields changed- changed
Input schema / properties / biller / descriptionPrevious value: -"Sub Job Filter, can pass Sub Job or Project"New value: +"JSON request body field — sub Job Filter, can pass Sub Job or Project" - changed
Input schema / properties / budget_view_id / descriptionPrevious value: -"Budget View ID"New value: +"URL path parameter — unique identifier of the budget view" - changed
Input schema / properties / cost_code / descriptionPrevious value: -"Cost Code Filter"New value: +"JSON request body field — cost Code Filter" - changed
Input schema / properties / cost_type / descriptionPrevious value: -"Cost Type Filter"New value: +"JSON request body field — cost Type Filter" - changed
Input schema / properties / detail_type / descriptionPrevious value: -"Detail Type Filter"New value: +"JSON request body field — detail Type Filter" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / root_cost_code / descriptionPrevious value: -"Division Filter"New value: +"JSON request body field — division Filter" - changed
Input schema / properties / vendor / descriptionPrevious value: -"Vendor Filter"New value: +"JSON request body field — vendor Filter"
- Changed
list_budget_modifications3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_budget_view_detail_rows13 fields changed- changed
Input schema / properties / biller__ / descriptionPrevious value: -"Return item(s) within a specific biller. Format is biller[]=id=1,type=SubJob or biller[]=id=1,type=Project"New value: +"Query string parameter — return item(s) within a specific biller. Format is biller[]=id=1,type=SubJob or biller[]=id=1,type=Project" - changed
Input schema / properties / budget_line_item_id__ / descriptionPrevious value: -"Return item(s) within a specific budget line item id or range of budget line item IDs"New value: +"Query string parameter — return item(s) within a specific budget line item id or range of budget line item IDs" - changed
Input schema / properties / budget_row_type / descriptionPrevious value: -"Return budgeted, unbudgeted or all item(s) from all budget rows for a project. Default is budgeted. Note that when the unbudgeted or all values are supplied, the id field will be null for rows that..."New value: +"Query string parameter — return budgeted, unbudgeted or all item(s) from all budget rows for a project. Default is budgeted. Note that when the unbudgeted or all values are supplied, the id field will be null for rows that..." - changed
Input schema / properties / budget_view_id / descriptionPrevious value: -"Budget View ID"New value: +"URL path parameter — unique identifier of the budget view" - changed
Input schema / properties / category_id__ / descriptionPrevious value: -"Return item(s) within a specific category id (line item type id) or range of category IDs"New value: +"Query string parameter — return item(s) within a specific category id (line item type id) or range of category IDs" - changed
Input schema / properties / cost_code_id__ / descriptionPrevious value: -"Return item(s) within a specific Cost Code id or range of Cost Code IDs"New value: +"Query string parameter — return item(s) within a specific Cost Code id or range of Cost Code IDs" - changed
Input schema / properties / cost_code_name__ / descriptionPrevious value: -"Return item(s) within a specific Cost Code name or range of Cost Code names"New value: +"Query string parameter — return item(s) within a specific Cost Code name or range of Cost Code names" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / root_cost_code_id__ / descriptionPrevious value: -"Return item(s) within a specific Root Cost Code id or range of Root Cost Code IDs"New value: +"Query string parameter — return item(s) within a specific Root Cost Code id or range of Root Cost Code IDs" - changed
Input schema / properties / root_cost_code_name__ / descriptionPrevious value: -"Return item(s) within a specific Root Cost Code name or range of Root Cost Code names"New value: +"Query string parameter — return item(s) within a specific Root Cost Code name or range of Root Cost Code names" - changed
Input schema / properties / sort / descriptionPrevious value: -"Return item(s) with the specified sort. Default is biller_type,biller,root_cost_code,cost_code,category_id\n"New value: +"Query string parameter — return item(s) with the specified sort. Default is biller_type,biller,root_cost_code,cost_code,category_id\n"
- Changed
list_budget_view_snapshot_detail_rows13 fields changed- changed
Input schema / properties / biller__ / descriptionPrevious value: -"Return item(s) within a specific biller. Format is biller[]=id=1,type=SubJob or biller[]=id=1,type=Project"New value: +"Query string parameter — return item(s) within a specific biller. Format is biller[]=id=1,type=SubJob or biller[]=id=1,type=Project" - changed
Input schema / properties / budget_line_item_id__ / descriptionPrevious value: -"Return item(s) within a specific budget line item id or range of budget line item IDs"New value: +"Query string parameter — return item(s) within a specific budget line item id or range of budget line item IDs" - changed
Input schema / properties / budget_row_type / descriptionPrevious value: -"Return budgeted, unbudgeted or all item(s) from all budget rows for a project. Default is all. Note that when the unbudgeted or all values are supplied, the id field will be null for rows that have..."New value: +"Query string parameter — return budgeted, unbudgeted or all item(s) from all budget rows for a project. Default is all. Note that when the unbudgeted or all values are supplied, the id field will be null for rows that have..." - changed
Input schema / properties / budget_view_snapshot_id / descriptionPrevious value: -"Budget View Snapshot ID"New value: +"URL path parameter — budget View Snapshot ID" - changed
Input schema / properties / category_id__ / descriptionPrevious value: -"Return item(s) within a specific category id (line item type id) or range of category IDs"New value: +"Query string parameter — return item(s) within a specific category id (line item type id) or range of category IDs" - changed
Input schema / properties / cost_code_id__ / descriptionPrevious value: -"Return item(s) within a specific Cost Code id or range of Cost Code IDs"New value: +"Query string parameter — return item(s) within a specific Cost Code id or range of Cost Code IDs" - changed
Input schema / properties / cost_code_name__ / descriptionPrevious value: -"Return item(s) within a specific Cost Code name or range of Cost Code names"New value: +"Query string parameter — return item(s) within a specific Cost Code name or range of Cost Code names" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / root_cost_code_id__ / descriptionPrevious value: -"Return item(s) within a specific Root Cost Code id or range of Root Cost Code IDs"New value: +"Query string parameter — return item(s) within a specific Root Cost Code id or range of Root Cost Code IDs" - changed
Input schema / properties / root_cost_code_name__ / descriptionPrevious value: -"Return item(s) within a specific Root Cost Code name or range of Root Cost Code names"New value: +"Query string parameter — return item(s) within a specific Root Cost Code name or range of Root Cost Code names" - changed
Input schema / properties / sort / descriptionPrevious value: -"Return item(s) with the specified sort. Default is biller_type,biller,root_cost_code,cost_code,category_id\n"New value: +"Query string parameter — return item(s) with the specified sort. Default is biller_type,biller,root_cost_code,cost_code,category_id\n"
- Changed
list_budget_view_snapshot_summary_rows13 fields changed- changed
Input schema / properties / biller__ / descriptionPrevious value: -"Return item(s) within a specific biller. Format is biller[]=id=1,type=SubJob or biller[]=id=1,type=Project"New value: +"Query string parameter — return item(s) within a specific biller. Format is biller[]=id=1,type=SubJob or biller[]=id=1,type=Project" - changed
Input schema / properties / budget_line_item_id__ / descriptionPrevious value: -"Return item(s) within a specific budget line item id or range of budget line item IDs"New value: +"Query string parameter — return item(s) within a specific budget line item id or range of budget line item IDs" - changed
Input schema / properties / budget_row_type / descriptionPrevious value: -"Return budgeted, unbudgeted or all item(s) from all budget rows for a project. Default is all. Note that when the unbudgeted or all values are supplied, the subtotals may change depending on the pr..."New value: +"Query string parameter — return budgeted, unbudgeted or all item(s) from all budget rows for a project. Default is all. Note that when the unbudgeted or all values are supplied, the subtotals may change depending on the pr..." - changed
Input schema / properties / budget_view_snapshot_id / descriptionPrevious value: -"Budget View Snapshot ID"New value: +"URL path parameter — budget View Snapshot ID" - changed
Input schema / properties / category_id__ / descriptionPrevious value: -"Return item(s) within a specific category id (line item type id) or range of category IDs"New value: +"Query string parameter — return item(s) within a specific category id (line item type id) or range of category IDs" - changed
Input schema / properties / cost_code_id__ / descriptionPrevious value: -"Return item(s) within a specific Cost Code id or range of Cost Code IDs"New value: +"Query string parameter — return item(s) within a specific Cost Code id or range of Cost Code IDs" - changed
Input schema / properties / cost_code_name__ / descriptionPrevious value: -"Return item(s) within a specific Cost Code name or range of Cost Code names"New value: +"Query string parameter — return item(s) within a specific Cost Code name or range of Cost Code names" - changed
Input schema / properties / group_by / descriptionPrevious value: -"Groups the data. Value can be a comma separated string. Default is biller,root_cost_code"New value: +"Query string parameter — groups the data. Value can be a comma separated string. Default is biller,root_cost_code" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / root_cost_code_id__ / descriptionPrevious value: -"Return item(s) within a specific Root Cost Code id or range of Root Cost Code IDs"New value: +"Query string parameter — return item(s) within a specific Root Cost Code id or range of Root Cost Code IDs" - changed
Input schema / properties / root_cost_code_name__ / descriptionPrevious value: -"Return item(s) within a specific Root Cost Code name or range of Root Cost Code names"New value: +"Query string parameter — return item(s) within a specific Root Cost Code name or range of Root Cost Code names"
- Changed
list_budget_view_snapshots8 fields changed- changed
Input schema / properties / filters__approval_status / descriptionPrevious value: -"Return snapshot(s) in the specified status."New value: +"Query string parameter — return snapshot(s) in the specified status." - changed
Input schema / properties / filters__budget_template_id / descriptionPrevious value: -"Return snapshot(s) using the specified budget template id."New value: +"Query string parameter — return snapshot(s) using the specified budget template id." - changed
Input schema / properties / filters__budget_view_id / descriptionPrevious value: -"Return snapshot(s) using the specified budget view id. (This will replace budget_template_id filter)"New value: +"Query string parameter — return snapshot(s) using the specified budget view id. (This will replace budget_template_id filter)" - changed
Input schema / properties / filters__snapshot_type / descriptionPrevious value: -"Return snapshot(s) of the specified type."New value: +"Query string parameter — return snapshot(s) of the specified type." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter"New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter"
- Changed
list_budget_view_summary_rows13 fields changed- changed
Input schema / properties / biller__ / descriptionPrevious value: -"Return item(s) within a specific biller. Format is biller[]=id=1,type=SubJob or biller[]=id=1,type=Project"New value: +"Query string parameter — return item(s) within a specific biller. Format is biller[]=id=1,type=SubJob or biller[]=id=1,type=Project" - changed
Input schema / properties / budget_line_item_id__ / descriptionPrevious value: -"Return item(s) within a specific budget line item id or range of budget line item IDs"New value: +"Query string parameter — return item(s) within a specific budget line item id or range of budget line item IDs" - changed
Input schema / properties / budget_row_type / descriptionPrevious value: -"Return budgeted, unbudgeted or all item(s) from all budget rows for a project. Default is budgeted. Note that when the unbudgeted or all values are supplied, the subtotals may change depending on t..."New value: +"Query string parameter — return budgeted, unbudgeted or all item(s) from all budget rows for a project. Default is budgeted. Note that when the unbudgeted or all values are supplied, the subtotals may change depending on t..." - changed
Input schema / properties / budget_view_id / descriptionPrevious value: -"Budget View ID"New value: +"URL path parameter — unique identifier of the budget view" - changed
Input schema / properties / category_id__ / descriptionPrevious value: -"Return item(s) within a specific category id (line item type id) or range of category IDs"New value: +"Query string parameter — return item(s) within a specific category id (line item type id) or range of category IDs" - changed
Input schema / properties / cost_code_id__ / descriptionPrevious value: -"Return item(s) within a specific Cost Code id or range of Cost Code IDs"New value: +"Query string parameter — return item(s) within a specific Cost Code id or range of Cost Code IDs" - changed
Input schema / properties / cost_code_name__ / descriptionPrevious value: -"Return item(s) within a specific Cost Code name or range of Cost Code names"New value: +"Query string parameter — return item(s) within a specific Cost Code name or range of Cost Code names" - changed
Input schema / properties / group_by / descriptionPrevious value: -"Groups the data. Value can be a comma separated string. Default is biller,root_cost_code"New value: +"Query string parameter — groups the data. Value can be a comma separated string. Default is biller,root_cost_code" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / root_cost_code_id__ / descriptionPrevious value: -"Return item(s) within a specific Root Cost Code id or range of Root Cost Code IDs"New value: +"Query string parameter — return item(s) within a specific Root Cost Code id or range of Root Cost Code IDs" - changed
Input schema / properties / root_cost_code_name__ / descriptionPrevious value: -"Return item(s) within a specific Root Cost Code name or range of Root Cost Code names"New value: +"Query string parameter — return item(s) within a specific Root Cost Code name or range of Root Cost Code names"
- Changed
list_budget_views4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter"New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter"
- Changed
list_calendar_events5 fields changed- changed
Input schema / properties / calendar__finish_datetime / descriptionPrevious value: -"Finish date or date-time"New value: +"Query string parameter — finish date or date-time" - changed
Input schema / properties / calendar__start_datetime / descriptionPrevious value: -"Start date or date-time"New value: +"Query string parameter — start date or date-time" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_calendar_items11 fields changed- changed
Input schema / properties / filters__assigned_id / descriptionPrevious value: -"Returns task(s) with specified assignee(s)"New value: +"Query string parameter — returns task(s) with specified assignee(s)" - changed
Input schema / properties / filters__date / descriptionPrevious value: -"Returns task(s) existing on the specified ISO 8601 datetime"New value: +"Query string parameter — returns task(s) existing on the specified ISO 8601 datetime" - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / finish_date / descriptionPrevious value: -"Calendar Items that occur before this date"New value: +"Query string parameter — calendar Items that occur before this date" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Return item(s) with the specified sort. Prepend \"-\" to specify descending order."New value: +"Query string parameter — return item(s) with the specified sort. Prepend \"-\" to specify descending order." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Calendar Items that occur after this date"New value: +"Query string parameter — calendar Items that occur after this date" - changed
Input schema / properties / view / descriptionPrevious value: -"The view to use when serializing Calendar Item data.\nThe ids_only view returns an array of Calendar Item IDs.\nThe total_count_only view returns total count of Calendar Items."New value: +"Query string parameter — the view to use when serializing Calendar Item data.\nThe ids_only view returns an array of Calendar Item IDs.\nThe total_count_only view returns total count of Calendar Items."
- Added
list_calendars - Removed
list_calendars_v2_0 - Changed
list_call_logs8 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific logs desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Return item(s) created by the specified User ID"New value: +"Query string parameter — return item(s) created by the specified User ID" - changed
Input schema / properties / filters__daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter" - changed
Input schema / properties / log_date / descriptionPrevious value: -"Date of specific logs desired in YYYY-MM-DD format"New value: +"Query string parameter — date of specific logs desired in YYYY-MM-DD format" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"
- Changed
list_change_event_production_quantities4 fields changed- changed
Input schema / properties / change_event_id / descriptionPrevious value: -"Unique identifier for the Change Event"New value: +"URL path parameter — unique identifier for the Change Event" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
list_change_event_statuses - Added
list_change_event_statuses_company - Added
list_change_event_statuses_v1_0 - Removed
list_change_event_statuses_v2_0 - Added
list_change_event_types - Removed
list_change_event_types_v2_0 - Changed
list_change_events32 fields changed- added
Input schema / properties / budget_changeAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events with or without Change Items with the specified Budget Change", + "type": "object" +} - added
Input schema / properties / budget_codeAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events with or without Change Items with the specified Budget Code", + "type": "object" +} - added
Input schema / properties / budget_days_in_stageAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events with Change Items having the specified budget days in stage", + "type": "object" +} - added
Input schema / properties / budget_in_status_sinceAdded value: +{ + "description": "JSON request body field — change Events with Change Items having budget entered status within the specified ISO 8601 datetime range.\nFormats:\n- `N_months` - Within N month,\n- `N_days` - Within N days,\n- `YYYY-MM-DD`...`YYYY...", + "type": "string" +} - added
Input schema / properties / budget_stageAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events with Change Items having Budget Stage with the specified stage", + "type": "object" +} - added
Input schema / properties / budget_stage_statusAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events with Change Items having Budget Stage with the specified status", + "type": "object" +} - added
Input schema / properties / change_event_line_itemAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — change_event_line_item", + "type": "object" +} - added
Input schema / properties / change_reasonAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events with the specified Change Reason, or Change Events that do not have the specified Change Reason, based on the operator used", + "type": "object" +} - added
Input schema / properties / change_typeAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events with the specified Change Type, or Change Events that do not have the specified Change Type, based on the operator used.", + "type": "object" +} - added
Input schema / properties / commitmentAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events with or without Change Items associated with a Commitment or Commitment Change Orders", + "type": "object" +} - added
Input schema / properties / commitment_statusAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events with Change Items having Commitment Contract or Commitment Change Order with the specified status", + "type": "object" +} - added
Input schema / properties / commitment_titleAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events with Change Items having Commitment or Commitment Change Orders with the specified title", + "type": "object" +} - added
Input schema / properties / contractAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events with Change Items having Commitment or Commitment Change Orders with the specified Contract", + "type": "object" +} - added
Input schema / properties / cost_days_in_stageAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events with Change Items having the specified cost days in stage", + "type": "object" +} - added
Input schema / properties / cost_in_status_sinceAdded value: +{ + "description": "JSON request body field — change Events with Change Items having cost entered status within the specified ISO 8601 datetime range.\nFormats:\n- `N_months` - Within N month,\n- `N_days` - Within N days,\n- `YYYY-MM-DD`...`YYYY-M...", + "type": "string" +} - added
Input schema / properties / cost_rom_amountAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events with Change Items having the specified cost rom amount", + "type": "object" +} - added
Input schema / properties / created_atAdded value: +{ + "description": "JSON request body field — change Events created within the specified ISO 8601 datetime range.\nFormats:\n- `N_months` - Within N month,\n- `N_days` - Within N days,\n- `YYYY-MM-DD`...`YYYY-MM-DD` - Date,\n- `YYYY-MM-DDTHH:MM:SSZ...", + "type": "string" +} - added
Input schema / properties / created_byAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events created by the specified User", + "type": "object" +} - added
Input schema / properties / custom_field_idAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events with custom fields that match the specified custom field values", + "type": "object" +} - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - removed
Input schema / properties / filters__idRemoved value: -{ - "description": "Return item(s) with the specified IDs.", - "items": {}, - "type": "array" -} - changed
Input schema / properties / filters__include_deleted / descriptionPrevious value: -"Use 'only' for only deleted resources. Use 'with' for deleted and undeleted resources."New value: +"Query string parameter — use 'only' to return only deleted resources. Use 'with' to return deleted and undeleted resources." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - removed
Input schema / properties / include_rfqsRemoved value: -{ - "description": "Determines whether to include RFQs in the response. If it's true, or left off, RFQs will be shown in the response. If it is false, RFQs will not be shown.", - "type": "boolean" -} - added
Input schema / properties / latest_budget_impact_project_currencyAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events with Change Items having the specified latest budget impact in project currency", + "type": "object" +} - added
Input schema / properties / latest_cost_amount_project_currencyAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events with Change Items having the specified latest cost amount in project currency", + "type": "object" +} - added
Input schema / properties / latest_revenue_amount_project_currencyAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events with Change Items having the specified latest revenue amount in project currency", + "type": "object" +} - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - added
Input schema / properties / revenue_in_status_sinceAdded value: +{ + "description": "JSON request body field — change Events with Change Items having revenue entered status within the specified ISO 8601 datetime range.\nFormats:\n- `N_months` - Within N month,\n- `N_days` - Within N days,\n- `YYYY-MM-DD`...`YYY...", + "type": "string" +} - added
Input schema / properties / revenue_unit_cost_project_currencyAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — return Change Events with Change Items having the specified revenue unit cost in project currency", + "type": "object" +}
- Removed
list_change_events_v1_1 - Changed
list_change_history_for_a_generic_tool_item5 fields changed- changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Unique identifier for the generic tool."New value: +"URL path parameter — unique identifier for the generic tool." - changed
Input schema / properties / generic_tool_item_id / descriptionPrevious value: -"Unique identifier for the generic tool item."New value: +"URL path parameter — unique identifier for the generic tool item." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_change_history_for_timesheet2 fields changed- changed
Input schema / properties / ids / descriptionPrevious value: -"Array of Timecard Entry IDs you want to view the Change Histories for"New value: +"JSON request body field — array of Timecard Entry IDs you want to view the Change Histories for" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
list_change_order_change_reasons - Added
list_change_order_change_reasons_company - Added
list_change_order_change_reasons_v1_0 - Removed
list_change_order_change_reasons_v2_0 - Changed
list_change_order_packages13 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract" - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__due_date / descriptionPrevious value: -"Returns item(s) due within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) due within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__include_deleted / descriptionPrevious value: -"Use 'only' for only deleted resources. Use 'with' for deleted and undeleted resources."New value: +"Query string parameter — use 'only' for only deleted resources. Use 'with' for deleted and undeleted resources." - changed
Input schema / properties / filters__invoiced_date / descriptionPrevious value: -"Returns item(s) invoiced within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) invoiced within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__paid_date / descriptionPrevious value: -"Returns item(s) paid within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) paid within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__reviewed_at / descriptionPrevious value: -"Returns item(s) reviewed within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) reviewed within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__signed_change_order_received_date / descriptionPrevious value: -"Return item(s) with a signed change order received date within the specified ISO 8601 date range."New value: +"Query string parameter — return item(s) with a signed change order received date within the specified ISO 8601 date range." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_change_order_requests13 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract" - changed
Input schema / properties / filters__change_order_package_id / descriptionPrevious value: -"Returns item(s) that belong to selected change order package."New value: +"Query string parameter — returns item(s) that belong to selected change order package." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__due_date / descriptionPrevious value: -"Returns item(s) due within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) due within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__invoiced_date / descriptionPrevious value: -"Returns item(s) invoiced within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) invoiced within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__not_status / descriptionPrevious value: -"Array of Status. Return item(s) that does not have specified status."New value: +"Query string parameter — array of Status. Return item(s) that does not have specified status." - changed
Input schema / properties / filters__paid_date / descriptionPrevious value: -"Returns item(s) paid within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) paid within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_change_order_statuses3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_change_types3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_checklist_inspection_comments7 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__item_id / descriptionPrevious value: -"Array of Checklist Item IDs. Return item(s) associated with the specified Checklist Item IDs."New value: +"Query string parameter — array of Checklist Item IDs. Return item(s) associated with the specified Checklist Item IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_checklist_inspection_schedules14 fields changed- changed
Input schema / properties / filters__assignee_id / descriptionPrevious value: -"Return schedule(s) with the specified Assignee IDs"New value: +"Query string parameter — return schedule(s) with the specified Assignee IDs" - changed
Input schema / properties / filters__ended / descriptionPrevious value: -"Return schedule(s) that are finished when true, returns unfinished schedule(s) otherwise"New value: +"Query string parameter — return schedule(s) that are finished when true, returns unfinished schedule(s) otherwise" - changed
Input schema / properties / filters__ends_at / descriptionPrevious value: -"Return schedule(s) with the specified Last Inspection Due Date."New value: +"Query string parameter — return schedule(s) with the specified Last Inspection Due Date." - changed
Input schema / properties / filters__equipment_id / descriptionPrevious value: -"Return schedule(s) with the specified Equipment IDs"New value: +"Query string parameter — return schedule(s) with the specified Equipment IDs" - changed
Input schema / properties / filters__first_inspection_due_at / descriptionPrevious value: -"Return schedule(s) with the specified First Inspection Due Date"New value: +"Query string parameter — return schedule(s) with the specified First Inspection Due Date" - changed
Input schema / properties / filters__frequency / descriptionPrevious value: -"Return schedule(s) with the specified Frequency Types"New value: +"Query string parameter — return schedule(s) with the specified Frequency Types" - changed
Input schema / properties / filters__inspection_type_id / descriptionPrevious value: -"Return schedule(s) with the specified Checklist Type IDs"New value: +"Query string parameter — return schedule(s) with the specified Checklist Type IDs" - changed
Input schema / properties / filters__list_template_id / descriptionPrevious value: -"Return schedule(s) with the specified Inspection Template IDs"New value: +"Query string parameter — return schedule(s) with the specified Inspection Template IDs" - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Return schedule(s) with the specified Location IDs"New value: +"Query string parameter — return schedule(s) with the specified Location IDs" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Sort schedule(s) by the chosen param; check below for a list of options. The direction of sorting is ascending by default; for descending sort, insert the - symbol before the param."New value: +"Query string parameter — sort schedule(s) by the chosen param; check below for a list of options. The direction of sorting is ascending by default; for descending sort, insert the - symbol before the param."
- Changed
list_checklist_inspection_sections7 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__list_id / descriptionPrevious value: -"Return section(s) with the specified Checklist List IDs"New value: +"Query string parameter — return section(s) with the specified Checklist List IDs" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Sort item(s) by the chosen param; check below for a list of options. The direction of sorting is ascending by default; for descending sort, insert the - symbol before the param."New value: +"Query string parameter — sort item(s) by the chosen param; check below for a list of options. The direction of sorting is ascending by default; for descending sort, insert the - symbol before the param."
- Changed
list_checklist_inspections_item_attachments6 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__item_id / descriptionPrevious value: -"Array of Checklist Item IDs. Return item(s) associated with the specified Checklist Item IDs."New value: +"Query string parameter — array of Checklist Item IDs. Return item(s) associated with the specified Checklist Item IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_checklist_inspections_items9 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - removed
Input schema / properties / filters__item_response_statusRemoved value: -{ - "description": "Filter item(s) with matching item_response status.", - "enum": [ - "conforming", - "non_conforming", - "neutral", - "not_applicable", - "null" - ], - "type": "string" -} - changed
Input schema / properties / filters__list_id / descriptionPrevious value: -"Return item(s) with the specified Checklist List IDs"New value: +"Query string parameter — return item(s) with the specified Checklist List IDs" - changed
Input schema / properties / filters__section_id / descriptionPrevious value: -"Return item(s) with the specified Checklist Section IDs"New value: +"Query string parameter — return item(s) with the specified Checklist Section IDs" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - removed
Input schema / properties / sortRemoved value: -{ - "description": "Sort item(s) by the chosen param; check below for a list of options. The direction of sorting is ascending by default; for descending sort, insert the - symbol before the param.", - "enum": [ - "position_by_section" - ], - "type": "string" -}
- Removed
list_checklist_inspections_items_v1_1 - Changed
list_checklist_item_observations8 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__item_id / descriptionPrevious value: -"Array of Checklist Item IDs. Return item(s) associated with the specified Checklist Item IDs."New value: +"Query string parameter — array of Checklist Item IDs. Return item(s) associated with the specified Checklist Item IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_checklist_list_assigned_company_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
list_checklist_list_closed_by_contact_filter_options - Added
list_checklist_list_closed_by_contact_filter_options_project - Added
list_checklist_list_closed_by_contact_filter_options_project_v1 - Removed
list_checklist_list_closed_by_contact_filter_options_v2_0 - Changed
list_checklist_list_created_by_contact_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_checklist_list_equipment_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_checklist_list_inspection_type_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
list_checklist_list_inspector_filter_options - Added
list_checklist_list_inspector_filter_options_project - Added
list_checklist_list_inspector_filter_options_project_v1_0 - Removed
list_checklist_list_inspector_filter_options_v2_0 - Removed
list_checklist_list_location_filter_options - Added
list_checklist_list_location_filter_options_project - Added
list_checklist_list_location_filter_options_project_v1_0 - Removed
list_checklist_list_location_filter_options_v2_0 - Removed
list_checklist_list_point_of_contact_filter_options - Added
list_checklist_list_point_of_contact_filter_options_project - Added
list_checklist_list_point_of_contact_filter_options_project_v1_0 - Removed
list_checklist_list_point_of_contact_filter_options_v2_0 - Changed
list_checklist_list_responsible_contractor_filter_options9 fields changed- added
Input schema / properties / company_idAdded value: +{ + "description": "URL path parameter — unique identifier for the company.", + "type": "string" +} - added
Input schema / properties / filters__inspection_type_groupingAdded value: +{ + "description": "Query string parameter — filter by inspection type grouping", + "enum": [ + "quality", + "safety" + ], + "type": "string" +} - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / project_id / typePrevious value: -"number"New value: +"string" - added
Input schema / properties / queryAdded value: +{ + "description": "Query string parameter — search query to filter responsible contractors by name", + "type": "string" +} - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — set to 'recycle_bin' to return filter options from deleted inspections", + "enum": [ + "recycle_bin" + ], + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "project_id" -]New value: +[ + "company_id", + "project_id" +]
- Added
list_checklist_list_responsible_contractor_filter_options_2 - Removed
list_checklist_list_responsible_contractor_filter_options_v2_0 - Changed
list_checklist_list_specification_section_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
list_checklist_list_specification_section_filter_options_project - Removed
list_checklist_list_specification_section_filter_options_v2_0 - Changed
list_checklist_list_status_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
list_checklist_list_template_filter_options - Added
list_checklist_list_template_filter_options_project - Added
list_checklist_list_template_filter_options_project_v1_0 - Removed
list_checklist_list_template_filter_options_v2_0 - Removed
list_checklist_list_trade_filter_options - Added
list_checklist_list_trade_filter_options_project - Added
list_checklist_list_trade_filter_options_project_v1_0 - Removed
list_checklist_list_trade_filter_options_v2_0 - Added
list_checklist_list_type_filter_options - Removed
list_checklist_list_type_filter_options_v2_0 - Added
list_checklist_schedule_assignee_filter_options - Removed
list_checklist_schedule_assignee_filter_options_v2_0 - Changed
list_checklist_schedule_attachments4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / schedule_id / descriptionPrevious value: -"Checklist Schedule ID"New value: +"URL path parameter — checklist Schedule ID"
- Changed
list_checklist_schedule_change_histories4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / schedule_id / descriptionPrevious value: -"Checklist Schedule ID"New value: +"URL path parameter — checklist Schedule ID"
- Added
list_checklist_schedule_inspection_template_filter_options - Removed
list_checklist_schedule_inspection_template_filter_options_v2_0 - Added
list_checklist_schedule_inspection_type_filter_options - Removed
list_checklist_schedule_inspection_type_filter_options_v2_0 - Changed
list_checklist_signature_requests4 fields changed- changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_checklist_templates3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_checklists17 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__due_at / descriptionPrevious value: -"Return item(s) due within the specified date range."New value: +"Query string parameter — return item(s) due within the specified date range." - changed
Input schema / properties / filters__inspection_type_id / descriptionPrevious value: -"Array of Inspection Type IDs. Return item(s) associated with the specified Inspection Type IDs."New value: +"Query string parameter — array of Inspection Type IDs. Return item(s) associated with the specified Inspection Type IDs." - changed
Input schema / properties / filters__inspector_id / descriptionPrevious value: -"Array of User IDs. Return item(s) where the specified User IDs are inspectors."New value: +"Query string parameter — array of User IDs. Return item(s) where the specified User IDs are inspectors." - changed
Input schema / properties / filters__list_template_id / descriptionPrevious value: -"Array of Checklist Template IDs. Return item(s) associated with the specified Checklist Template IDs."New value: +"Query string parameter — array of Checklist Template IDs. Return item(s) associated with the specified Checklist Template IDs." - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Filters by specific location (Note: Use *either* this or location_id_with_sublocations, but not both)"New value: +"Query string parameter — filters by specific location (Note: Use *either* this or location_id_with_sublocations, but not both)" - changed
Input schema / properties / filters__point_of_contact_id / descriptionPrevious value: -"Array of User IDs. Return item(s) where the specified User IDs are the point of contact."New value: +"Query string parameter — array of User IDs. Return item(s) where the specified User IDs are the point of contact." - changed
Input schema / properties / filters__responsible_contractor_id / descriptionPrevious value: -"Array of Vendor IDs. Return item(s) where the specified Vendor IDs are the responsible contractor."New value: +"Query string parameter — array of Vendor IDs. Return item(s) where the specified Vendor IDs are the responsible contractor." - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Returns item(s) matching the specified search query string."New value: +"Query string parameter — returns item(s) matching the specified search query string." - changed
Input schema / properties / filters__spec_section_id / descriptionPrevious value: -"Array of Specification Section IDs. Return item(s) associated to the specified Specification Section IDs."New value: +"Query string parameter — array of Specification Section IDs. Return item(s) associated to the specified Specification Section IDs." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value." - changed
Input schema / properties / filters__trade_id / descriptionPrevious value: -"Trade ID"New value: +"Query string parameter — filter results by trade id" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / filters__view / descriptionPrevious value: -"If 'recycle', return deleted Checklists."New value: +"Query string parameter — if 'recycle', return deleted Checklists." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_checklists_inspections23 fields changed- changed
Input schema / properties / filters__closed_at / descriptionPrevious value: -"Returns item(s) closed within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) closed within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__closed_by_id / descriptionPrevious value: -"Array of User IDs. Return item(s) closed by the specified User ID."New value: +"Query string parameter — array of User IDs. Return item(s) closed by the specified User ID." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Return item(s) created by the specified User IDs"New value: +"Query string parameter — return item(s) created by the specified User IDs" - changed
Input schema / properties / filters__due_at / descriptionPrevious value: -"Return item(s) due within the specified date range."New value: +"Query string parameter — return item(s) due within the specified date range." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__inspection_date / descriptionPrevious value: -"Return item(s) with inspection date within the specified ISO 8601 date range."New value: +"Query string parameter — return item(s) with inspection date within the specified ISO 8601 date range." - changed
Input schema / properties / filters__inspection_type_id / descriptionPrevious value: -"Array of Inspection Type IDs. Return item(s) associated with the specified Inspection Type IDs."New value: +"Query string parameter — array of Inspection Type IDs. Return item(s) associated with the specified Inspection Type IDs." - changed
Input schema / properties / filters__inspector_id / descriptionPrevious value: -"Array of User IDs. Return item(s) where the specified User IDs are inspectors."New value: +"Query string parameter — array of User IDs. Return item(s) where the specified User IDs are inspectors." - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Location ID. Returns item(s) with the specified Location ID or a range of Location IDs."New value: +"Query string parameter — location ID. Returns item(s) with the specified Location ID or a range of Location IDs." - changed
Input schema / properties / filters__managed_equipment_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID." - changed
Input schema / properties / filters__point_of_contact_id / descriptionPrevious value: -"Array of User IDs. Return item(s) where the specified User IDs are the point of contact."New value: +"Query string parameter — array of User IDs. Return item(s) where the specified User IDs are the point of contact." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__responsible_contractor_id / descriptionPrevious value: -"Array of Vendor IDs. Return item(s) where the specified Vendor IDs are the responsible contractor."New value: +"Query string parameter — array of Vendor IDs. Return item(s) where the specified Vendor IDs are the responsible contractor." - changed
Input schema / properties / filters__spec_section_id / descriptionPrevious value: -"Array of Specification Section IDs. Return item(s) associated to the specified Specification Section IDs."New value: +"Query string parameter — array of Specification Section IDs. Return item(s) associated to the specified Specification Section IDs." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Return item(s) with the specified statuses"New value: +"Query string parameter — return item(s) with the specified statuses" - changed
Input schema / properties / filters__template_id / descriptionPrevious value: -"Array of Checklist Template IDs. Return item(s) associated to the specified Checklist Template IDs."New value: +"Query string parameter — array of Checklist Template IDs. Return item(s) associated to the specified Checklist Template IDs." - changed
Input schema / properties / filters__trade_id / descriptionPrevious value: -"Trade ID"New value: +"Query string parameter — filter results by trade id" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Added
list_commitment_change_order_line_items - Removed
list_commitment_change_order_line_items_v2_0 - Added
list_commitment_contract_line_items - Removed
list_commitment_contract_line_items_v2_0 - Added
list_commitment_contracts - Removed
list_commitment_contracts_v2_0 - Changed
list_commitments3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_communication_tags5 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / search / descriptionPrevious value: -"Search term to filter communication tags by title."New value: +"Query string parameter — search term to filter communication tags by title." - changed
Input schema / properties / view / descriptionPrevious value: -"View type for the response."New value: +"Query string parameter — view type for the response."
- Changed
list_communication_threads4 fields changed- changed
Input schema / properties / communication_id / descriptionPrevious value: -"Communication ID"New value: +"URL path parameter — unique identifier of the communication" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_companies3 fields changed- changed
Input schema / properties / include_free_companies / descriptionPrevious value: -"By default the endpoint excludes free companies. Provide include_free_companies=true to include them"New value: +"Query string parameter — by default the endpoint excludes free companies. Provide include_free_companies=true to include them" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_company_action_plan_template_item_assignees9 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return section(s) associated with the specified Action Plan Template ID(s)."New value: +"Query string parameter — return section(s) associated with the specified Action Plan Template ID(s)." - changed
Input schema / properties / filters__plan_template_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template Item ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template Item ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_company_action_plan_template_items9 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template ID."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template ID." - changed
Input schema / properties / filters__plan_template_section_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template Section ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template Section ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_company_action_plan_template_references9 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template ID."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template ID." - changed
Input schema / properties / filters__plan_template_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template Item ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template Item ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_company_action_plan_template_requests10 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return section(s) associated with the specified Action Plan Template ID(s)."New value: +"Query string parameter — return section(s) associated with the specified Action Plan Template ID(s)." - changed
Input schema / properties / filters__plan_template_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Company Action Plan Template Item ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Company Action Plan Template Item ID(s)." - changed
Input schema / properties / filters__type / descriptionPrevious value: -"Return item(s) associated with the specified Test Record Type(s)."New value: +"Query string parameter — return item(s) associated with the specified Test Record Type(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_company_action_plan_types8 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__active / descriptionPrevious value: -"If true, returns item(s) with a status of 'active'."New value: +"Query string parameter — if true, returns item(s) with a status of 'active'." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_company_checklist_sections4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / list_template_id / descriptionPrevious value: -"Checklist Template ID"New value: +"Query string parameter — checklist Template ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
list_company_checklist_template_sections4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / list_template_id / descriptionPrevious value: -"The ID of the Checklist Template"New value: +"URL path parameter — the ID of the Checklist Template" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
list_company_checklist_templates10 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__inspection_type_id / descriptionPrevious value: -"Array of Inspection Type IDs. Return item(s) associated with the specified Inspection Type IDs."New value: +"Query string parameter — array of Inspection Type IDs. Return item(s) associated with the specified Inspection Type IDs." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__response_set_id / descriptionPrevious value: -"Array of Item Response Set IDs. Return list template(s) whose items are associated with the given Response Set IDs."New value: +"Query string parameter — array of Item Response Set IDs. Return list template(s) whose items are associated with the given Response Set IDs." - changed
Input schema / properties / filters__trade_id / descriptionPrevious value: -"Trade ID"New value: +"Query string parameter — filter results by trade id" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_company_folders_and_files5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / exclude_files / descriptionPrevious value: -"Exclude children Files from results"New value: +"Query string parameter — exclude children Files from results" - changed
Input schema / properties / exclude_folders / descriptionPrevious value: -"Exclude children Folders from results"New value: +"Query string parameter — exclude children Folders from results" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
list_company_form_templates6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_company_form_templates_from_project6 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_company_inactive_users4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort."
- Changed
list_company_inactive_vendors5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Return items with the specified sort"New value: +"Query string parameter — return items with the specified sort" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view of the resource to return (which attributes should be present in the response). The default view is extended."New value: +"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). The default view is extended."
- Changed
list_company_inspection_template_item_reference9 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return References with the specified IDs"New value: +"Query string parameter — return References with the specified IDs" - changed
Input schema / properties / filters__item_id / descriptionPrevious value: -"Return Reference(s) with the specified Item IDs and Synced Company Template Item References"New value: +"Query string parameter — return Reference(s) with the specified Item IDs and Synced Company Template Item References" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / inspection_template_id / descriptionPrevious value: -"The ID of the Company Inspection Template"New value: +"URL path parameter — the ID of the Company Inspection Template" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Sort item(s) by the chosen param; check below for a list of options. The direction of sorting is ascending by default; for descending sort, insert the - symbol before the param."New value: +"Query string parameter — sort item(s) by the chosen param; check below for a list of options. The direction of sorting is ascending by default; for descending sort, insert the - symbol before the param."
- Changed
list_company_inspection_template_items4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / inspection_template_id / descriptionPrevious value: -"The ID of the Company Inspection Template"New value: +"URL path parameter — the ID of the Company Inspection Template" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_company_insurances3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_company_observation_types3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_company_offices4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / view / descriptionPrevious value: -"The view determines which fields are returned. 'normal' returns id, address, city, country_code, division, fax, logo, name, phone, state_code, and zip.\n 'extended' additionally returns main_office."New value: +"Query string parameter — the view determines which fields are returned. 'normal' returns id, address, city, country_code, division, fax, logo, name, phone, state_code, and zip.\n 'extended' additionally returns main_office."
- Changed
list_company_people13 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / filters__connected / descriptionPrevious value: -"If true, returns only people who are connected users. If false, returns only people who are not connected users."New value: +"Query string parameter — if true, returns only people who are connected users. If false, returns only people who are not connected users." - changed
Input schema / properties / filters__is_employee / descriptionPrevious value: -"If true, returns item(s) where `is_employee` value is true."New value: +"Query string parameter — if true, returns item(s) where `is_employee` value is true." - changed
Input schema / properties / filters__job_title / descriptionPrevious value: -"Returns only people who have the specified job title."New value: +"Query string parameter — returns only people who have the specified job title." - changed
Input schema / properties / filters__reference_users_only / descriptionPrevious value: -"If true, returns only people who are reference users."New value: +"Query string parameter — if true, returns only people who are reference users." - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Returns People where the search string matches the Person's name (first, last, or full), email address, mobile phone, business phone, fax number, or job title."New value: +"Query string parameter — returns People where the search string matches the Person's name (first, last, or full), email address, mobile phone, business phone, fax number, or job title." - changed
Input schema / properties / filters__state_code / descriptionPrevious value: -"Returns only people who have the specified state code."New value: +"Query string parameter — returns only people who have the specified state code." - changed
Input schema / properties / filters__trade_id / descriptionPrevious value: -"Array of Trade IDs. Returns item(s) with the specified Trade IDs."New value: +"Query string parameter — array of Trade IDs. Returns item(s) with the specified Trade IDs." - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs." - changed
Input schema / properties / filters__without_reference_users / descriptionPrevious value: -"If true, returns only people who are not reference users."New value: +"Query string parameter — if true, returns only people who are not reference users." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view of the resource to return (which attributes should be present in the response). If a valid view is not provided, it will default to normal."New value: +"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). If a valid view is not provided, it will default to normal."
- Added
list_company_project_status_snapshots - Removed
list_company_project_status_snapshots_v2_0 - Changed
list_company_projects6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / custom_fields_integration_name / descriptionPrevious value: -"Filter results by a **Custom Field's** `integration_name`. This allows searching based on custom-defined attributes in the system. Example usage: `/v2/companies/{company_id}/...?my_custom_field=nor..."New value: +"Query string parameter — filter results by a **Custom Field's** `integration_name`. This allows searching based on custom-defined attributes in the system. Example usage: `/v2/companies/{company_id}/...?my_custom_field=nor..." - changed
Input schema / properties / name / descriptionPrevious value: -"Filters items by their exact name. The query performs an exact match. Example usage: `/v2/companies/{company_id}/...?name=Bridge+Restoration`\n"New value: +"Query string parameter — filters items by their exact name. The query performs an exact match. Example usage: `/v2/companies/{company_id}/...?name=Bridge+Restoration`\n" - changed
Input schema / properties / page / descriptionPrevious value: -"This is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..."New value: +"Query string parameter — this is a **0-based index** representing the page slice of the data you want to retrieve. Each page contains up to **400 items**.\n### **📌 Pageable Endpoints** People endpoints that return multiple..." - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_number / descriptionPrevious value: -"Filters items by their exact project number. The query performs an exact match. Example usage: `/v2/companies/{company_id}/...?project_number=BR-2024`\n"New value: +"Query string parameter — filters items by their exact project number. The query performs an exact match. Example usage: `/v2/companies/{company_id}/...?project_number=BR-2024`\n"
- Changed
list_company_roles5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / company_id / typePrevious value: -"number"New value: +"string" - changed
Input schema / properties / filters__users_only / descriptionPrevious value: -"If true, returns only project roles of type user."New value: +"Query string parameter — if true, returns only project roles of type contact." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Query string parameter — page number for pagination" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Removed
list_company_roles_v2_0 - Changed
list_company_segment_items5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / segment_id / descriptionPrevious value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment" - changed
Input schema / properties / segment_item_list_id / descriptionPrevious value: -"Used to filter legacy segment items by list. Required for Cost Codes."New value: +"Query string parameter — used to filter legacy segment items by list. Required for Cost Codes."
- Removed
list_company_users_v1_0 - Removed
list_company_users_v1_0_2 - Removed
list_company_users_v1_1 - Removed
list_company_users_v1_1_1 - Removed
list_company_users_v1_2 - Removed
list_company_users_v1_2_1 - Changed
list_company_users_v1_313 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - removed
Input schema / properties / filters__activeRemoved value: -{ - "description": "If true, returns item(s) with a status of 'active'.", - "type": "boolean" -} - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__origin_id / descriptionPrevious value: -"Origin ID. Returns item(s) with the specified Origin ID."New value: +"Query string parameter — origin ID. Returns item(s) with the specified Origin ID." - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Return users where the search string matches the user's first name, last name, email address, keywords, job title, or company name"New value: +"Query string parameter — return users where the search string matches the user's first name, last name, email address, keywords, job title, or company name" - changed
Input schema / properties / filters__trade_id__ / descriptionPrevious value: -"Returns users whose vendor record is associated with the specified trade id(s)."New value: +"Query string parameter — returns users whose vendor record is associated with the specified trade id(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort." - changed
Input schema / properties / sort / enumPrevious value: -[ - "name", - "vendor_name", - "permission_template", - "full_name" -]New value: +[ + "name", + "vendor_name", + "permission_template", + "full_name", + "projects", + "email", + "job_title" +] - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). If a valid view is not provided, it will return the default view: normal.", + "enum": [ + "extended", + "ids_only", + "normal" + ], + "type": "string" +}
- Removed
list_company_users_v1_3_1 - Added
list_company_users_v1_3_2 - Changed
list_company_vendor_comments5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort." - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
- Changed
list_company_vendor_insurances4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
- Changed
list_company_vendors13 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return items within a specific created at ISO8601 datetime range"New value: +"Query string parameter — return items within a specific created at ISO8601 datetime range" - changed
Input schema / properties / filters__id__ / descriptionPrevious value: -"Returns vendors with the specified id(s)"New value: +"Query string parameter — returns vendors with the specified id(s)" - changed
Input schema / properties / filters__origin_id / descriptionPrevious value: -"Origin ID. Returns item(s) with the specified Origin ID."New value: +"Query string parameter — origin ID. Returns item(s) with the specified Origin ID." - changed
Input schema / properties / filters__parent_id__ / descriptionPrevious value: -"Returns vendors with the specified parent id(s)"New value: +"Query string parameter — returns vendors with the specified parent id(s)" - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Return vendors where the search string matches the vendor name, keywords, origin_code, or ABN/EIN number"New value: +"Query string parameter — return vendors where the search string matches the vendor name, keywords, origin_code, or ABN/EIN number" - changed
Input schema / properties / filters__standard_cost_code_id__ / descriptionPrevious value: -"Returns vendors associated with the specified standard cost code id(s)"New value: +"Query string parameter — returns vendors associated with the specified standard cost code id(s)" - changed
Input schema / properties / filters__trade_id__ / descriptionPrevious value: -"Returns vendors associated with the specified trade id(s)"New value: +"Query string parameter — returns vendors associated with the specified trade id(s)" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return items within a specific updated at ISO8601 datetime range"New value: +"Query string parameter — return items within a specific updated at ISO8601 datetime range" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Return items with the specified sort"New value: +"Query string parameter — return items with the specified sort" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view of the resource to return (which attributes should be present in the response). The default view is extended."New value: +"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). The default view is extended."
- Changed
list_company_wbs_patterns3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
list_company_wbs_segment_item_lists4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / segment_id / descriptionPrevious value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment"
- Changed
list_company_wbs_segments3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Added
list_company_webhooks_deliveries - Removed
list_company_webhooks_deliveries_v2_0 - Added
list_company_webhooks_hooks - Removed
list_company_webhooks_hooks_v2_0 - Added
list_company_webhooks_resources - Removed
list_company_webhooks_resources_v2_0 - Added
list_company_webhooks_triggers - Removed
list_company_webhooks_triggers_v2_0 - Changed
list_companys_projects3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
list_configurable_field_set_project_options6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Configurable Field Set ID"New value: +"URL path parameter — configurable Field Set ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / starts_with / descriptionPrevious value: -"Filter by project name, project number or display name starts with the given text."New value: +"Query string parameter — filter by project name, project number or display name starts with the given text." - changed
Input schema / properties / with_name / descriptionPrevious value: -"Filter by project name, project number or display name which contains the given text."New value: +"Query string parameter — filter by project name, project number or display name which contains the given text."
- Changed
list_configurable_field_sets7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__generic_tool_id__ / descriptionPrevious value: -"Filter by generic tool id(s). Could be a integer or an array of integer."New value: +"Query string parameter — filter by generic tool id(s). Could be a integer or an array of integer." - changed
Input schema / properties / filters__type__ / descriptionPrevious value: -"Filter by field set type(s). Could be a string or an array of string."New value: +"Query string parameter — filter by field set type(s). Could be a string or an array of string." - changed
Input schema / properties / include_lov_entries / descriptionPrevious value: -"whether or not to include LOV entries in the response\n(defaults to true)"New value: +"Query string parameter — whether or not to include LOV entries in the response\n(defaults to true)" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / view / descriptionPrevious value: -"Specify which view to render. Options are common, extended, mobile, or with_project_ids"New value: +"Query string parameter — specify which view to render. Options are common, extended, mobile, or with_project_ids"
- Changed
list_contract_payments4 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"ID of the Contract"New value: +"Query string parameter — unique identifier of the contract" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_contributing_behaviors7 fields changed- changed
Input schema / properties / all / descriptionPrevious value: -"Both active and inactive Contributing Behaviors"New value: +"Query string parameter — both active and inactive Contributing Behaviors" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__active / descriptionPrevious value: -"If true, returns item(s) with a status of 'active'."New value: +"Query string parameter — if true, returns item(s) with a status of 'active'." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_contributing_conditions7 fields changed- changed
Input schema / properties / all / descriptionPrevious value: -"Both active and inactive Contributing Conditions"New value: +"Query string parameter — both active and inactive Contributing Conditions" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__active / descriptionPrevious value: -"If true, returns item(s) with a status of 'active'."New value: +"Query string parameter — if true, returns item(s) with a status of 'active'." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_coordination_issue_activities7 fields changed- changed
Input schema / properties / filters__coordination_issue_id__ / descriptionPrevious value: -"Filter item(s) with coordination issues."New value: +"Query string parameter — filter item(s) with coordination issues." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__include_deleted / descriptionPrevious value: -"Use 'only' for only deleted resources. Use 'with' for deleted and undeleted resources."New value: +"Query string parameter — use 'only' for only deleted resources. Use 'with' for deleted and undeleted resources." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view contains all attributes in extended view except activity_details.\nThe default view is normal."New value: +"Query string parameter — the compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view contains all attributes in extended view except activity_details.\nThe default view is normal."
- Changed
list_coordination_issue_activity_feed_items6 fields changed- changed
Input schema / properties / filters__coordination_issue_id__ / descriptionPrevious value: -"Filter item(s) with coordination issues."New value: +"Query string parameter — filter item(s) with coordination issues." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__include_deleted / descriptionPrevious value: -"Use 'only' for only deleted resources. Use 'with' for deleted and undeleted resources."New value: +"Query string parameter — use 'only' for only deleted resources. Use 'with' for deleted and undeleted resources." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_coordination_issue_assignable_users3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_coordination_issue_change_history5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The extended view provides what is shown below.\nThe normal view is the same as the extended view but excludes attribute created_by.\nThe compact view returns ids only.\nThe default view is normal."New value: +"Query string parameter — the extended view provides what is shown below.\nThe normal view is the same as the extended view but excludes attribute created_by.\nThe compact view returns ids only.\nThe default view is normal."
- Changed
list_coordination_issue_file_filter_options4 fields changed- changed
Input schema / properties / locale / descriptionPrevious value: -"The locale in which you need the link to your translation file. \nEnsure it is one of the procore available locales."New value: +"Query string parameter — the locale in which you need the link to your translation file. \nEnsure it is one of the procore available locales." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_coordination_issue_viewpoints_legacy_model_manager_rest_v28 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / coordination_issue_id / descriptionPrevious value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID" - changed
Input schema / properties / included / descriptionPrevious value: -"**Ignored.** Legacy list items always return the full `:procore_v0_1` blueprint shape; MM-backed\nrows always return the full Model Manager viewpoint object.\n"New value: +"Query string parameter — **Ignored.** Legacy list items always return the full `:procore_v0_1` blueprint shape; MM-backed\nrows always return the full Model Manager viewpoint object.\n" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / primary / descriptionPrevious value: -"When `true`, only mappings marked primary on the issue are returned. When `false`, only non-primary\nmappings. When omitted, all mappings are returned (subject to pagination). Applies to both the fu..."New value: +"Query string parameter — when `true`, only mappings marked primary on the issue are returned. When `false`, only non-primary\nmappings. When omitted, all mappings are returned (subject to pagination). Applies to both the fu..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"When `ids_only`, response body is `{ \"data\": [...] }`: legacy mappings use integer\n`bim_viewpoint_id`; MM-backed mappings use UUID strings. Order matches the full list (`position`,\n`created_at`).\n"New value: +"Query string parameter — when `ids_only`, response body is `{ \"data\": [...] }`: legacy mappings use integer\n`bim_viewpoint_id`; MM-backed mappings use UUID strings. Order matches the full list (`position`,\n`created_at`).\n"
- Changed
list_coordination_issues26 fields changed- changed
Input schema / properties / filters__assignee_company_id__ / descriptionPrevious value: -"Filter item(s) with matching assignee vendor companies."New value: +"Query string parameter — filter item(s) with matching assignee vendor companies." - changed
Input schema / properties / filters__assignee_id__ / descriptionPrevious value: -"Filter item(s) with matching assignees."New value: +"Query string parameter — filter item(s) with matching assignees." - changed
Input schema / properties / filters__coordination_issue_file_id__ / descriptionPrevious value: -"Filter item(s) with the exact coordination issue file."New value: +"Query string parameter — filter item(s) with the exact coordination issue file." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Filter item(s) within a specific created at iso8601 datetime range."New value: +"Query string parameter — filter item(s) within a specific created at iso8601 datetime range." - changed
Input schema / properties / filters__created_by_id__ / descriptionPrevious value: -"Filter item(s) with matching User IDs."New value: +"Query string parameter — filter item(s) with matching User IDs." - changed
Input schema / properties / filters__created_from__ / descriptionPrevious value: -"Filter item(s) with matching creation source."New value: +"Query string parameter — filter item(s) with matching creation source." - changed
Input schema / properties / filters__document_container_id__ / descriptionPrevious value: -"Filter Coordination Issues by document container ID(s)."New value: +"Query string parameter — filter Coordination Issues by document container ID(s)." - changed
Input schema / properties / filters__document_revision_id__ / descriptionPrevious value: -"Filter Coordination Issues by document revision ID(s)."New value: +"Query string parameter — filter Coordination Issues by document revision ID(s)." - changed
Input schema / properties / filters__due_date / descriptionPrevious value: -"Filter item(s) within a specific due date iso8601 date range."New value: +"Query string parameter — filter item(s) within a specific due date iso8601 date range." - changed
Input schema / properties / filters__ids__ / descriptionPrevious value: -"Filter item(s) with matching ids."New value: +"Query string parameter — filter item(s) with matching ids." - changed
Input schema / properties / filters__include_sublocations / descriptionPrevious value: -"Use together with `filters[location_id]`\n"New value: +"Query string parameter — use together with `filters[location_id]`\n" - changed
Input schema / properties / filters__issue_type__ / descriptionPrevious value: -"Filter item(s) with matching issue_type."New value: +"Query string parameter — filter item(s) with matching issue_type." - changed
Input schema / properties / filters__location_id__ / descriptionPrevious value: -"Filter item(s) with matching locations."New value: +"Query string parameter — filter item(s) with matching locations." - changed
Input schema / properties / filters__overdue / descriptionPrevious value: -"Filter item(s) with matching Overdue."New value: +"Query string parameter — filter item(s) with matching Overdue." - changed
Input schema / properties / filters__priority__ / descriptionPrevious value: -"Filter item(s) with matching priority."New value: +"Query string parameter — filter item(s) with matching priority." - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Filter item(s) with the matching search query. The search is performed on title and issue number."New value: +"Query string parameter — filter item(s) with the matching search query. The search is performed on title and issue number." - changed
Input schema / properties / filters__status__ / descriptionPrevious value: -"Filter item(s) with matching status."New value: +"Query string parameter — filter item(s) with matching status." - changed
Input schema / properties / filters__trade_id__ / descriptionPrevious value: -"Filter item(s) with matching trades."New value: +"Query string parameter — filter item(s) with matching trades." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Filter item(s) within a specific updated at iso8601 datetime range."New value: +"Query string parameter — filter item(s) within a specific updated at iso8601 datetime range." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / save_sticky_filters / descriptionPrevious value: -"Persists filter parameters for the requesting user and project."New value: +"Query string parameter — persists filter parameters for the requesting user and project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Sort item(s) by an attribute. The default sort is ascending. To sort in descending order, prepend the sort value with a hyphen character '-'"New value: +"Query string parameter — sort item(s) by an attribute. The default sort is ascending. To sort in descending order, prepend the sort value with a hyphen character '-'" - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe normal view is a subset of the response shown below, and does not include attachments, viewpoints, linked items and updated_by\nThe extended view contains the..."New value: +"Query string parameter — the compact view contains only ids.\nThe normal view is a subset of the response shown below, and does not include attachments, viewpoints, linked items and updated_by\nThe extended view contains the..." - changed
Input schema / properties / viewpoint_format / descriptionPrevious value: -"Specify viewpoint data format. This parameter functions only when the query parameter view is 'extended'\nThe default format returns the viewpoint content as saved.\nThe procore format returns the vi..."New value: +"Query string parameter — specify viewpoint data format. This parameter functions only when the query parameter view is 'extended'\nThe default format returns the viewpoint content as saved.\nThe procore format returns the vi..."
- Added
list_coordination_issues_for_a_project_rest_v2_0 - Removed
list_coordination_issues_for_a_project_rest_v2_0_v2_0 - Changed
list_coordination_issues_in_recycle_bin22 fields changed- changed
Input schema / properties / filters__assignee_company_id__ / descriptionPrevious value: -"Filter item(s) with matching assignee vendor companies."New value: +"Query string parameter — filter item(s) with matching assignee vendor companies." - changed
Input schema / properties / filters__assignee_id__ / descriptionPrevious value: -"Filter item(s) with matching assignees."New value: +"Query string parameter — filter item(s) with matching assignees." - changed
Input schema / properties / filters__coordination_issue_file_id__ / descriptionPrevious value: -"Filter item(s) with the exact coordination issue file."New value: +"Query string parameter — filter item(s) with the exact coordination issue file." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Filter item(s) within a specific created at iso8601 datetime range."New value: +"Query string parameter — filter item(s) within a specific created at iso8601 datetime range." - changed
Input schema / properties / filters__created_by_id__ / descriptionPrevious value: -"Filter item(s) with matching User IDs."New value: +"Query string parameter — filter item(s) with matching User IDs." - changed
Input schema / properties / filters__created_from__ / descriptionPrevious value: -"Filter item(s) with matching creation source."New value: +"Query string parameter — filter item(s) with matching creation source." - changed
Input schema / properties / filters__due_date / descriptionPrevious value: -"Filter item(s) within a specific due date iso8601 date range."New value: +"Query string parameter — filter item(s) within a specific due date iso8601 date range." - changed
Input schema / properties / filters__ids__ / descriptionPrevious value: -"Filter item(s) with matching ids."New value: +"Query string parameter — filter item(s) with matching ids." - changed
Input schema / properties / filters__include_sublocations / descriptionPrevious value: -"Use together with `filters[location_id]`\n"New value: +"Query string parameter — use together with `filters[location_id]`\n" - changed
Input schema / properties / filters__issue_type__ / descriptionPrevious value: -"Filter item(s) with matching issue_type."New value: +"Query string parameter — filter item(s) with matching issue_type." - changed
Input schema / properties / filters__location_id__ / descriptionPrevious value: -"Filter item(s) with matching locations."New value: +"Query string parameter — filter item(s) with matching locations." - changed
Input schema / properties / filters__overdue / descriptionPrevious value: -"Filter item(s) with matching Overdue."New value: +"Query string parameter — filter item(s) with matching Overdue." - changed
Input schema / properties / filters__priority__ / descriptionPrevious value: -"Filter item(s) with matching priority."New value: +"Query string parameter — filter item(s) with matching priority." - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Filter item(s) with the matching search query. The search is performed on title and issue number."New value: +"Query string parameter — filter item(s) with the matching search query. The search is performed on title and issue number." - changed
Input schema / properties / filters__status__ / descriptionPrevious value: -"Filter item(s) with matching status."New value: +"Query string parameter — filter item(s) with matching status." - changed
Input schema / properties / filters__trade_id__ / descriptionPrevious value: -"Filter item(s) with matching trades."New value: +"Query string parameter — filter item(s) with matching trades." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Filter item(s) within a specific updated at iso8601 datetime range."New value: +"Query string parameter — filter item(s) within a specific updated at iso8601 datetime range." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Sort item(s) by an attribute. The default sort is ascending. To sort in descending order, prepend the sort value with a hyphen character '-'"New value: +"Query string parameter — sort item(s) by an attribute. The default sort is ascending. To sort in descending order, prepend the sort value with a hyphen character '-'" - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe normal view is a subset of the response shown below, and does not include attachments, viewpoints, linked items and updated_by\nThe extended view contains the..."New value: +"Query string parameter — the compact view contains only ids.\nThe normal view is a subset of the response shown below, and does not include attachments, viewpoints, linked items and updated_by\nThe extended view contains the..."
- Added
list_coordination_issues_workflow_issues - Removed
list_coordination_issues_workflow_issues_v2_0 - Changed
list_correspondence_type_defaults4 fields changed- changed
Input schema / properties / filters__generic_tool_id / descriptionPrevious value: -"Return item(s) within the specified Generic Tool ID(s)"New value: +"Query string parameter — return item(s) within the specified Generic Tool ID(s)" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_correspondence_type_items22 fields changed- changed
Input schema / properties / filters__closed_at / descriptionPrevious value: -"Returns item(s) closed within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) closed within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__generic_tool_id / descriptionPrevious value: -"Return item(s) within the specified Generic Tool ID(s)"New value: +"Query string parameter — return item(s) within the specified Generic Tool ID(s)" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__issued_at / descriptionPrevious value: -"Returns item(s) issued within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) issued within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Filters by specific location (Note: Use *either* this or location_id_with_sublocations, but not both)"New value: +"Query string parameter — filters by specific location (Note: Use *either* this or location_id_with_sublocations, but not both)" - changed
Input schema / properties / filters__login_information_id / descriptionPrevious value: -"Array of Login Information IDs. Returns item(s) with the specified Login Information ID."New value: +"Query string parameter — array of Login Information IDs. Returns item(s) with the specified Login Information ID." - changed
Input schema / properties / filters__overdue / descriptionPrevious value: -"If true, returns item(s) that are overdue."New value: +"Query string parameter — if true, returns item(s) that are overdue." - changed
Input schema / properties / filters__private / descriptionPrevious value: -"If true, returns only item(s) with a `private` status."New value: +"Query string parameter — if true, returns only item(s) with a `private` status." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__received_from_id / descriptionPrevious value: -"Received From ID"New value: +"Query string parameter — filter results by received from id" - changed
Input schema / properties / filters__recycle_bin / descriptionPrevious value: -"If true, returns item(s) that have been deleted."New value: +"Query string parameter — if true, returns item(s) that have been deleted." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Return item(s) with the specified Vendor ID."New value: +"Query string parameter — return item(s) with the specified Vendor ID." - changed
Input schema / properties / group / descriptionPrevious value: -"Controls if the Items are returned sorted by the sort attribute then the Generic Tool's Title or just the sort attribute. Defaults to 'generic_tool_title'."New value: +"Query string parameter — controls if the Items are returned sorted by the sort attribute then the Generic Tool's Title or just the sort attribute. Defaults to 'generic_tool_title'." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Field to sort by. If the field is passed with a - (EX: -updated_at) it is sorted in reverse order"New value: +"Query string parameter — field to sort by. If the field is passed with a - (EX: -updated_at) it is sorted in reverse order" - changed
Input schema / properties / view / descriptionPrevious value: -"Defines the type of view returned. Must be one of 'extended', 'compact', 'ids_only', or 'flatten_v0'."New value: +"Query string parameter — defines the type of view returned. Must be one of 'extended', 'compact', 'ids_only', or 'flatten_v0'."
- Changed
list_correspondence_type_permissions3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_correspondence_type_users3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_correspondences_company4 fields changed- changed
Input schema / properties / bid_package_id / descriptionPrevious value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_correspondences_project4 fields changed- changed
Input schema / properties / bid_package_id / descriptionPrevious value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_cost_codes7 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"return cost codes that are filtered on an array of ID's. Example: filters[id]=[1,2]"New value: +"Query string parameter — return cost codes that are filtered on an array of ID's. Example: filters[id]=[1,2]" - changed
Input schema / properties / filters__origin_id / descriptionPrevious value: -"Origin ID. Returns item(s) with the specified Origin ID."New value: +"Query string parameter — origin ID. Returns item(s) with the specified Origin ID." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / sub_job_id / descriptionPrevious value: -"Unique identifier for the Sub Job"New value: +"Query string parameter — unique identifier for the Sub Job" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view (which attributes) of the resource is going to be present in the response."New value: +"Query string parameter — specifies which view (which attributes) of the resource is going to be present in the response."
- Changed
list_cost_codes_for_timesheets4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sub_job_id / descriptionPrevious value: -"Sub Job ID"New value: +"Query string parameter — unique identifier of the sub job"
- Changed
list_cost_codes_ids_for_timesheets4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sub_job_id / descriptionPrevious value: -"Sub Job ID"New value: +"Query string parameter — unique identifier of the sub job"
- Removed
list_counts_of_daily_logs - Added
list_counts_of_daily_logs_project - Added
list_counts_of_daily_logs_project_v1_1 - Removed
list_counts_of_daily_logs_v1_1 - Changed
list_creation_source_filter_options4 fields changed- changed
Input schema / properties / locale / descriptionPrevious value: -"The locale in which you need the link to your translation file. \nEnsure it is one of the procore available locales."New value: +"Query string parameter — the locale in which you need the link to your translation file. \nEnsure it is one of the procore available locales." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_creator_filter_options5 fields changed- changed
Input schema / properties / filters__bim_file_id / descriptionPrevious value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids" - changed
Input schema / properties / locale / descriptionPrevious value: -"The locale in which you need the link to your translation file. \nEnsure it is one of the procore available locales."New value: +"Query string parameter — the locale in which you need the link to your translation file. \nEnsure it is one of the procore available locales." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Removed
list_custom_field_definitions - Added
list_custom_field_definitions_company - Changed
list_custom_field_definitions_configurable_field_sets4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / custom_field_definition_id / descriptionPrevious value: -"Custom Field Definition ID"New value: +"URL path parameter — custom Field Definition ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Added
list_custom_field_definitions_v1_0 - Removed
list_custom_field_definitions_v1_1 - Changed
list_custom_field_lov_entries8 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / custom_field_definition_id / descriptionPrevious value: -"Unique identifier for the Custom Field Definition."New value: +"URL path parameter — unique identifier for the Custom Field Definition." - changed
Input schema / properties / filters__active / descriptionPrevious value: -"return lov entries that active status is (true or false)"New value: +"Query string parameter — return lov entries that active status is (true or false)" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"return lov entries that are filtered on an array of ID's. Example: filters[id]=[1,2]"New value: +"Query string parameter — return lov entries that are filtered on an array of ID's. Example: filters[id]=[1,2]" - changed
Input schema / properties / filters__label_with / descriptionPrevious value: -"return lov entries that contains the label with the text"New value: +"Query string parameter — return lov entries that contains the label with the text" - changed
Input schema / properties / filters__start_with / descriptionPrevious value: -"return lov entries that label start with letters"New value: +"Query string parameter — return lov entries that label start with letters" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_custom_field_metadata8 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the company. You must supply either a company_id or project_id." - changed
Input schema / properties / filters__custom_field_definitions_id / descriptionPrevious value: -"Return a list of all Custom Field Metadata associated with the Current Company and custom_field_definition_id provided."New value: +"Query string parameter — return a list of all Custom Field Metadata associated with the Current Company and custom_field_definition_id provided." - changed
Input schema / properties / filters__field_set_id__ / descriptionPrevious value: -"Return a list of all Custom Field Metadata associated with the Current Company and source_id provided."New value: +"Query string parameter — return a list of all Custom Field Metadata associated with the Current Company and source_id provided." - changed
Input schema / properties / filters__field_set_type__ / descriptionPrevious value: -"Return a list of all Custom Field Metadata associated with the Current Company and source_type provided."New value: +"Query string parameter — return a list of all Custom Field Metadata associated with the Current Company and source_type provided." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the project. You must supply either a company_id or project_id." - changed
Input schema / properties / view / descriptionPrevious value: -"The extended view provides what is shown below.\nThe default view returns the same as the extended view but excludes the attributes company_id, host_type, source_type, source_id, label, data_type.\nT..."New value: +"Query string parameter — the extended view provides what is shown below.\nThe default view returns the same as the extended view but excludes the attributes company_id, host_type, source_type, source_id, label, data_type.\nT..."
- Changed
list_custom_field_sections3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_custom_fields_user_options5 fields changed- changed
Input schema / properties / filters__search / descriptionPrevious value: -"filters results by the search query"New value: +"Query string parameter — filters results by the search query" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / tool_name / descriptionPrevious value: -"Tool name identifier"New value: +"URL path parameter — tool name identifier"
- Changed
list_custom_tool_users3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_daily_construction_report_logs9 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific logs desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Return item(s) created by the specified User ID"New value: +"Query string parameter — return item(s) created by the specified User ID" - changed
Input schema / properties / filters__daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter" - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Filter on status for \"pending\" or \"approved\" or \"all\""New value: +"Query string parameter — filter on status for \"pending\" or \"approved\" or \"all\"" - changed
Input schema / properties / log_date / descriptionPrevious value: -"Date of specific logs desired in YYYY-MM-DD format"New value: +"Query string parameter — date of specific logs desired in YYYY-MM-DD format" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"
- Changed
list_daily_construction_report_logs_vendor_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
list_default_correspondence_types - Removed
list_default_correspondence_types_v2_0 - Changed
list_default_distribution_members4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"Query string parameter — unique identifier of the vendor"
- Added
list_default_task_items_project_distribution_members - Removed
list_default_task_items_project_distribution_members_v2_0 - Changed
list_delay_log_types4 fields changed- changed
Input schema / properties / filters__visible / descriptionPrevious value: -"Filter Delay Log Types based on visible. Defaults to true, to query all types pass 'false...true'"New value: +"Query string parameter — filter Delay Log Types based on visible. Defaults to true, to query all types pass 'false...true'" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_delay_logs9 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific logs desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter" - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Return item(s) with the specified Location IDs."New value: +"Query string parameter — return item(s) with the specified Location IDs." - changed
Input schema / properties / log_date / descriptionPrevious value: -"Date of specific logs desired in YYYY-MM-DD format"New value: +"Query string parameter — date of specific logs desired in YYYY-MM-DD format" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"
- Changed
list_deleted_payouts4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / disbursement_id / descriptionPrevious value: -"Unique identifier for the disbursement."New value: +"URL path parameter — unique identifier for the disbursement." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
list_deleted_punch_items3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Removed
list_deleted_punch_items_v1_1 - Changed
list_delivery_logs9 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific logs desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter" - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Filter on status for \"pending\" or \"approved\" or \"all\""New value: +"Query string parameter — filter on status for \"pending\" or \"approved\" or \"all\"" - changed
Input schema / properties / log_date / descriptionPrevious value: -"Date of specific logs desired in YYYY-MM-DD format"New value: +"Query string parameter — date of specific logs desired in YYYY-MM-DD format" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"
- Changed
list_departments3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_direct_cost_items10 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__invoice_number / descriptionPrevious value: -"Returns item(s) with the specified Invoice Number."New value: +"Query string parameter — returns item(s) with the specified Invoice Number." - changed
Input schema / properties / filters__origin_id / descriptionPrevious value: -"Origin ID. Returns item(s) with the specified Origin ID."New value: +"Query string parameter — origin ID. Returns item(s) with the specified Origin ID." - changed
Input schema / properties / filters__payment_date / descriptionPrevious value: -"Returns item(s) with a payment date within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) with a payment date within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__received_date / descriptionPrevious value: -"Returns item(s) with a received date within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) with a received date within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
list_direct_cost_items_v1_1 - Changed
list_direct_cost_line_items9 fields changed- changed
Input schema / properties / direct_cost_id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the direct cost" - changed
Input schema / properties / filters__cost_code_id / descriptionPrevious value: -"Cost Code ID. Returns item(s) with the specified Cost Code ID or within the specified range of Cost Code IDs."New value: +"Query string parameter — cost Code ID. Returns item(s) with the specified Cost Code ID or within the specified range of Cost Code IDs." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__line_item_type_id / descriptionPrevious value: -"Line Item Type ID. Returns item(s) with the specified Line Item Type ID or range of Line Item Type IDs."New value: +"Query string parameter — line Item Type ID. Returns item(s) with the specified Line Item Type ID or range of Line Item Type IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_distribution_groups7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Returns item(s) matching the specified search query string."New value: +"Query string parameter — returns item(s) matching the specified search query string." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort." - changed
Input schema / properties / view / descriptionPrevious value: -"Parameter affecting what level of detail will be returned from the endpoint.\n'extended' will include the users included in each distribution group."New value: +"Query string parameter — parameter affecting what level of detail will be returned from the endpoint.\n'extended' will include the users included in each distribution group." - changed
Input schema / properties / with_domain_users / descriptionPrevious value: -"Return list of user IDs that have permissions to view specified domain."New value: +"Query string parameter — return list of user IDs that have permissions to view specified domain."
- Added
list_distribution_groups_for_specifications - Removed
list_distribution_groups_for_specifications_v2_1 - Changed
list_drawing_areas5 fields changed- added
Input schema / properties / filters__idAdded value: +{ + "description": "Query string parameter — filter by Drawing Areas ID\nTo request specific drawing area ids add `filters[id]=[1,2,3]` to filters", + "items": {}, + "type": "array" +} - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — specify response schema view", + "enum": [ + "compact", + "extended", + "only_ids", + "mfe" + ], + "type": "string" +}
- Removed
list_drawing_areas_v1_1 - Changed
list_drawing_disciplines5 fields changed- added
Input schema / properties / filters__idAdded value: +{ + "description": "Query string parameter — filter by Drawing Disciplines ID\nTo request specific drawing discipline ids add `filters[id]=[1,2,3]` to filters", + "items": {}, + "type": "array" +} - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — specify response schema view", + "enum": [ + "only_ids" + ], + "type": "string" +}
- Removed
list_drawing_disciplines_v1_1 - Changed
list_drawing_revision_terms4 fields changed- changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to fetch extracted terms for. Limited to 50 revisions per call; clients should paginate larger collections."New value: +"Query string parameter — drawing Revisions to fetch extracted terms for. Limited to 50 revisions per call; clients should paginate larger collections." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
list_drawing_revision_terms_v1_1 - Changed
list_drawing_revisions16 fields changed- changed
Input schema / properties / drawing_area_id / descriptionPrevious value: -"Filter by Drawing Area"New value: +"Query string parameter — filter by Drawing Area" - changed
Input schema / properties / drawing_discipline_id / descriptionPrevious value: -"Filter by Drawing Discipline"New value: +"Query string parameter — filter by Drawing Discipline" - changed
Input schema / properties / drawing_id / descriptionPrevious value: -"Filter by Drawing"New value: +"Query string parameter — unique identifier of the drawing" - changed
Input schema / properties / drawing_set_id / descriptionPrevious value: -"Filter by Drawing Set.\nTo retreive revisions from current set add `drawing_set_id=current_set` to query"New value: +"Query string parameter — filter by Drawing Set.\nTo retreive revisions from current set add `drawing_set_id=current_set` to query" - changed
Input schema / properties / filters__deleted / descriptionPrevious value: -"Include deleted drawing revisions. Deleted drawing revisions are filtered by default."New value: +"Query string parameter — include deleted drawing revisions. Deleted drawing revisions are filtered by default." - changed
Input schema / properties / filters__ids / descriptionPrevious value: -"Filter by Drawing Revisions ID\nTo request specific drawing revision ids add `filters[ids]=[1,2,3]` to filters"New value: +"Query string parameter — filter by Drawing Revisions ID\nTo request specific drawing revision ids add `filters[ids]=[1,2,3]` to filters" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / id / descriptionPrevious value: -"Filter by Drawing Revision ID\nTo request specific drawing revision ids add `id[]=42&id[]=43` to query"New value: +"Query string parameter — filter by Drawing Revision ID\nTo request specific drawing revision ids add `id[]=42&id[]=43` to query" - changed
Input schema / properties / is_reviewed / descriptionPrevious value: -"Filter by `reviewed` status"New value: +"Query string parameter — filter by `reviewed` status" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / query / descriptionPrevious value: -"Filter by custom query"New value: +"Query string parameter — filter by custom query" - changed
Input schema / properties / sort / descriptionPrevious value: -"Sort by field"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order" - changed
Input schema / properties / view / descriptionPrevious value: -"Defines the type of view returned. Must be one of 'only_pdf_urls', 'only_ids', 'only_ids_post_review', 'web_index', 'web_show', 'extended_coordinates', 'extended_files', 'extended_dpi' or 'android'."New value: +"Query string parameter — defines the type of view returned. Must be one of 'only_pdf_urls', 'only_ids', 'only_ids_post_review', 'web_index', 'web_show', 'extended_coordinates', 'extended_files', 'extended_dpi' or 'android'." - changed
Input schema / properties / with_obsolete / descriptionPrevious value: -"Include obsolete drawing revisions. Obsolete drawing revisions are filtered by default."New value: +"Query string parameter — include obsolete drawing revisions. Obsolete drawing revisions are filtered by default."
- Changed
list_drawing_sets8 fields changed- changed
Input schema / properties / drawing_area_id / descriptionPrevious value: -"Filters to only drawing sets with a least one revision in that drawing area."New value: +"Query string parameter — filters to only drawing sets with a least one revision in that drawing area." - changed
Input schema / properties / filters__exclude_empty_sets / descriptionPrevious value: -"If true, returns drawing sets that contain at least one drawing."New value: +"Query string parameter — if true, returns drawing sets that contain at least one drawing." - changed
Input schema / properties / filters__only_attachable_sets / descriptionPrevious value: -"If true, returns drawing sets that contain at least one published drawing."New value: +"Query string parameter — if true, returns drawing sets that contain at least one published drawing." - changed
Input schema / properties / filters__with_measurements / descriptionPrevious value: -"If true, returns only drawing sets that contain at least one measurement."New value: +"Query string parameter — if true, returns only drawing sets that contain at least one measurement." - changed
Input schema / properties / filters__with_sketches / descriptionPrevious value: -"If true, returns only drawing sets that contain at least one drawing sketch."New value: +"Query string parameter — if true, returns only drawing sets that contain at least one drawing sketch." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_drawing_tiles4 fields changed- changed
Input schema / properties / drawing_revision_id / descriptionPrevious value: -"ID of the drawing revision"New value: +"URL path parameter — iD of the drawing revision" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_drawing_uploads4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — specifies the level of detail returned in the response.\nThe 'with_drawing_log_imports' view provides additional data as shown below.\nThe 'normal' view is the default if not specified.", + "enum": [ + "normal", + "with_drawing_log_imports" + ], + "type": "string" +}
- Removed
list_drawing_uploads_v1_1 - Changed
list_drawings8 fields changed- changed
Input schema / properties / drawing_area_id / descriptionPrevious value: -"ID of the drawing area"New value: +"URL path parameter — iD of the drawing area" - added
Input schema / properties / filters__drawing_discipline_idAdded value: +{ + "description": "Query string parameter — returns a list of drawings that are linked to the provided drawing_discipline_id", + "type": "number" +} - added
Input schema / properties / filters__drawing_set_idAdded value: +{ + "description": "Query string parameter — returns a list of drawings that are linked to the provided drawing_set_id. Can optionally pass 'current_set' to return only drawings that are published.", + "type": "number" +} - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — the 'compact' view returns the minimal attributes of a drawing (id, number, title, obsolete, and discipline). The 'extended' view returns minimal attributes with the current_revision object, which ...", + "enum": [ + "compact", + "extended", + "with_revisions" + ], + "type": "string" +} - added
Input schema / properties / with_positionAdded value: +{ + "description": "Query string parameter — returns a list of drawings conditionally ordered by position. By default, it will order by position.", + "type": "boolean" +}
- Removed
list_drawings_v1_1 - Changed
list_dumpster_logs9 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific logs desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter" - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs." - changed
Input schema / properties / log_date / descriptionPrevious value: -"Date of specific logs desired in YYYY-MM-DD format"New value: +"Query string parameter — date of specific logs desired in YYYY-MM-DD format" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"
- Changed
list_early_pay_programs4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page index of paginated results"New value: +"Query string parameter — page index of paginated results" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Page size of paginated results"New value: +"Query string parameter — page size of paginated results" - changed
Input schema / properties / sort / descriptionPrevious value: -"Sort fields (createdAt, isActive)"New value: +"Query string parameter — sort fields (createdAt, isActive)"
- Removed
list_ecrion_xml_and_template_for_meetings - Added
list_ecrion_xml_and_template_for_meetings_project - Added
list_ecrion_xml_and_template_for_meetings_v1_0 - Removed
list_ecrion_xml_and_template_for_meetings_v1_1 - Changed
list_environmental_types7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__active / descriptionPrevious value: -"If true, returns item(s) with a status of 'active'."New value: +"Query string parameter — if true, returns item(s) with a status of 'active'." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Environmental Types"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_environmentals7 fields changed- changed
Input schema / properties / filters__environmental_type_id / descriptionPrevious value: -"Return item(s) with the specified Environmental Type ID."New value: +"Query string parameter — return item(s) with the specified Environmental Type ID." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID. When provided, the list will be scoped to only the Environmentals for a given Incident."New value: +"Query string parameter — incident ID. When provided, the list will be scoped to only the Environmentals for a given Incident." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_equipment3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_equipment_logs8 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific logs desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Return item(s) created by the specified User ID"New value: +"Query string parameter — return item(s) created by the specified User ID" - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Return item(s) with the specified Location ID."New value: +"Query string parameter — return item(s) with the specified Location ID." - changed
Input schema / properties / log_date / descriptionPrevious value: -"Date of specific logs desired in YYYY-MM-DD format"New value: +"Query string parameter — date of specific logs desired in YYYY-MM-DD format" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"
- Changed
list_equipment_maintenance_logs3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_equipment_timecard_entries_project9 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / end_date / descriptionPrevious value: -"The end of the date range for equipment timecard entries. (YYYY-MM-DD) End date is inclusive."New value: +"Query string parameter — the end of the date range for equipment timecard entries. (YYYY-MM-DD) End date is inclusive." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset"New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs"New value: +"Query string parameter — return item(s) with the specified IDs" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset"New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"The beginning of the date range for equipment timecard entries. (YYYY-MM-DD) Start date is inclusive."New value: +"Query string parameter — the beginning of the date range for equipment timecard entries. (YYYY-MM-DD) Start date is inclusive."
- Changed
list_field_production_report_summary3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_filter_options_for_approvers3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_attachments3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_ball_in_court3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_ball_in_court_company3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_buffer_time3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_cost_code3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_created_by3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_created_via3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_current_revision3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_design_team_review_time3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_for_record_only3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_internal_review_time3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_is_rejected3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_lead_time3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_location3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_prepare_time3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_private3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_received_from3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_responsible_contractor3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_specification_area3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_specification_division3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_specification_section3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_submittal_manager3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter ��� page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_submittal_package3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_submittal_response3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_submittal_revision3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_submittal_scheduled_task3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_submittal_status3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_submittal_sub_job3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_submittal_unpackaged3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_submittal_workflow_template3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filter_options_for_type3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_filters_company3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
list_filters_project5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / tab / descriptionPrevious value: -"Tab name"New value: +"Query string parameter — tab name" - changed
Input schema / properties / tool / descriptionPrevious value: -"Tool name"New value: +"Query string parameter — tool name"
- Changed
list_forms_on_a_project11 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__form_template_id / descriptionPrevious value: -"Array of Form Template IDs. Return item(s) associated with the specified Form Template IDs."New value: +"Query string parameter — array of Form Template IDs. Return item(s) associated with the specified Form Template IDs." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - added
Input schema / properties / filters__privateAdded value: +{ + "description": "Query string parameter — if true, returns only item(s) with a `private` status.", + "type": "boolean" +} - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Returns item(s) matching the specified search query string."New value: +"Query string parameter — returns item(s) matching the specified search query string." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Removed
list_forms_on_a_project_v1_1 - Changed
list_generic_tool_items19 fields changed- changed
Input schema / properties / filters__closed_at / descriptionPrevious value: -"Returns item(s) closed within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) closed within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__issued_at / descriptionPrevious value: -"Returns item(s) issued within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) issued within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__login_information_id / descriptionPrevious value: -"Array of Login Information IDs. Returns item(s) with the specified Login Information ID."New value: +"Query string parameter — array of Login Information IDs. Returns item(s) with the specified Login Information ID." - changed
Input schema / properties / filters__overdue / descriptionPrevious value: -"If true, returns item(s) that are overdue."New value: +"Query string parameter — if true, returns item(s) that are overdue." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__received_from_id / descriptionPrevious value: -"Received From ID"New value: +"Query string parameter — filter results by received from id" - changed
Input schema / properties / filters__recycle_bin / descriptionPrevious value: -"If true, returns item(s) that have been deleted."New value: +"Query string parameter — if true, returns item(s) that have been deleted." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Return item(s) with the specified Vendor ID."New value: +"Query string parameter — return item(s) with the specified Vendor ID." - changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Field to sort by. If the field is passed with a - (EX: -updated_at) it is sorted in reverse order"New value: +"Query string parameter — field to sort by. If the field is passed with a - (EX: -updated_at) it is sorted in reverse order" - changed
Input schema / properties / view / descriptionPrevious value: -"If supplied customize the response format"New value: +"Query string parameter — if supplied customize the response format"
- Changed
list_generic_tools4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__project_id / descriptionPrevious value: -"Return item(s) with the Project ID."New value: +"Query string parameter — return item(s) with the Project ID." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_gps_positions6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_grouped_checklists_inspections24 fields changed- changed
Input schema / properties / filters__closed_at / descriptionPrevious value: -"Returns item(s) closed within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) closed within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__closed_by_id / descriptionPrevious value: -"Array of User IDs. Return item(s) closed by the specified User ID."New value: +"Query string parameter — array of User IDs. Return item(s) closed by the specified User ID." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Return item(s) created by the specified User IDs"New value: +"Query string parameter — return item(s) created by the specified User IDs" - changed
Input schema / properties / filters__due_at / descriptionPrevious value: -"Return item(s) due within the specified date range."New value: +"Query string parameter — return item(s) due within the specified date range." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__inspection_date / descriptionPrevious value: -"Return item(s) with inspection date within the specified ISO 8601 date range."New value: +"Query string parameter — return item(s) with inspection date within the specified ISO 8601 date range." - changed
Input schema / properties / filters__inspection_type_id / descriptionPrevious value: -"Array of Inspection Type IDs. Return item(s) associated with the specified Inspection Type IDs."New value: +"Query string parameter — array of Inspection Type IDs. Return item(s) associated with the specified Inspection Type IDs." - changed
Input schema / properties / filters__inspector_id / descriptionPrevious value: -"Array of User IDs. Return item(s) where the specified User IDs are inspectors."New value: +"Query string parameter — array of User IDs. Return item(s) where the specified User IDs are inspectors." - changed
Input schema / properties / filters__list_template_id / descriptionPrevious value: -"Array of Checklist Template IDs. Return item(s) associated with the specified Checklist Template IDs."New value: +"Query string parameter — array of Checklist Template IDs. Return item(s) associated with the specified Checklist Template IDs." - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Location ID. Returns item(s) with the specified Location ID or a range of Location IDs."New value: +"Query string parameter — location ID. Returns item(s) with the specified Location ID or a range of Location IDs." - changed
Input schema / properties / filters__managed_equipment_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID." - changed
Input schema / properties / filters__point_of_contact_id / descriptionPrevious value: -"Array of User IDs. Return item(s) where the specified User IDs are the point of contact."New value: +"Query string parameter — array of User IDs. Return item(s) where the specified User IDs are the point of contact." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__responsible_contractor_id / descriptionPrevious value: -"Array of Vendor IDs. Return item(s) where the specified Vendor IDs are the responsible contractor."New value: +"Query string parameter — array of Vendor IDs. Return item(s) where the specified Vendor IDs are the responsible contractor." - changed
Input schema / properties / filters__spec_section_id / descriptionPrevious value: -"Array of Specification Section IDs. Return item(s) associated to the specified Specification Section IDs."New value: +"Query string parameter — array of Specification Section IDs. Return item(s) associated to the specified Specification Section IDs." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Return item(s) with the specified statuses"New value: +"Query string parameter — return item(s) with the specified statuses" - changed
Input schema / properties / filters__trade_id / descriptionPrevious value: -"Trade ID"New value: +"Query string parameter — filter results by trade id" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / group_by / descriptionPrevious value: -"group_by"New value: +"Query string parameter — the group by for this Inspections operation" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_grouped_coordination_issue_status_count4 fields changed- changed
Input schema / properties / filters__group_by / descriptionPrevious value: -"Filter status counts by group_by attribute."New value: +"Query string parameter — filter status counts by group_by attribute." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_grouped_recycled_checklists_inspections24 fields changed- changed
Input schema / properties / filters__closed_at / descriptionPrevious value: -"Returns item(s) closed within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) closed within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__closed_by_id / descriptionPrevious value: -"Array of User IDs. Return item(s) closed by the specified User ID."New value: +"Query string parameter — array of User IDs. Return item(s) closed by the specified User ID." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Return item(s) created by the specified User IDs"New value: +"Query string parameter — return item(s) created by the specified User IDs" - changed
Input schema / properties / filters__due_at / descriptionPrevious value: -"Return item(s) due within the specified date range."New value: +"Query string parameter — return item(s) due within the specified date range." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__inspection_date / descriptionPrevious value: -"Return item(s) with inspection date within the specified ISO 8601 date range."New value: +"Query string parameter — return item(s) with inspection date within the specified ISO 8601 date range." - changed
Input schema / properties / filters__inspection_type_id / descriptionPrevious value: -"Array of Inspection Type IDs. Return item(s) associated with the specified Inspection Type IDs."New value: +"Query string parameter — array of Inspection Type IDs. Return item(s) associated with the specified Inspection Type IDs." - changed
Input schema / properties / filters__inspector_id / descriptionPrevious value: -"Array of User IDs. Return item(s) where the specified User IDs are inspectors."New value: +"Query string parameter — array of User IDs. Return item(s) where the specified User IDs are inspectors." - changed
Input schema / properties / filters__list_template_id / descriptionPrevious value: -"Array of Checklist Template IDs. Return item(s) associated with the specified Checklist Template IDs."New value: +"Query string parameter — array of Checklist Template IDs. Return item(s) associated with the specified Checklist Template IDs." - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Location ID. Returns item(s) with the specified Location ID or a range of Location IDs."New value: +"Query string parameter — location ID. Returns item(s) with the specified Location ID or a range of Location IDs." - changed
Input schema / properties / filters__managed_equipment_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID." - changed
Input schema / properties / filters__point_of_contact_id / descriptionPrevious value: -"Array of User IDs. Return item(s) where the specified User IDs are the point of contact."New value: +"Query string parameter — array of User IDs. Return item(s) where the specified User IDs are the point of contact." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__responsible_contractor_id / descriptionPrevious value: -"Array of Vendor IDs. Return item(s) where the specified Vendor IDs are the responsible contractor."New value: +"Query string parameter — array of Vendor IDs. Return item(s) where the specified Vendor IDs are the responsible contractor." - changed
Input schema / properties / filters__spec_section_id / descriptionPrevious value: -"Array of Specification Section IDs. Return item(s) associated to the specified Specification Section IDs."New value: +"Query string parameter — array of Specification Section IDs. Return item(s) associated to the specified Specification Section IDs." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Return item(s) with the specified statuses"New value: +"Query string parameter — return item(s) with the specified statuses" - changed
Input schema / properties / filters__trade_id / descriptionPrevious value: -"Trade ID"New value: +"Query string parameter — filter results by trade id" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / group_by / descriptionPrevious value: -"group_by"New value: +"Query string parameter — the group by for this Inspections operation" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_harm_sources8 fields changed- changed
Input schema / properties / all / descriptionPrevious value: -"Harm Sources"New value: +"Query string parameter — harm Sources" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__active / descriptionPrevious value: -"If true, returns item(s) with a status of 'active'."New value: +"Query string parameter — if true, returns item(s) with a status of 'active'." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_hazards7 fields changed- changed
Input schema / properties / all / descriptionPrevious value: -"Both active and inactive Hazards"New value: +"Query string parameter — both active and inactive Hazards" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__active / descriptionPrevious value: -"If true, returns item(s) with a status of 'active'."New value: +"Query string parameter — if true, returns item(s) with a status of 'active'." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_image_categories3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_image_category_ids_that_contain_images4 fields changed- changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return Image Categories that contain Images that are within a specific updated_at date-time range."New value: +"Query string parameter — return Image Categories that contain Images that are within a specific updated_at date-time range." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_images19 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__include_sublocations / descriptionPrevious value: -"Use together with `filters[location_id]`\n"New value: +"Query string parameter — use together with `filters[location_id]`\n" - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Location ID. Returns item(s) with the specified Location ID or a range of Location IDs."New value: +"Query string parameter — location ID. Returns item(s) with the specified Location ID or a range of Location IDs." - changed
Input schema / properties / filters__log_date / descriptionPrevious value: -"Date of Photos added to the Daily Log in the format \"YYYY-MM-DD\", or a range of dates in the format \"YYYY-MM-DD...YYYY-MM-DD\"."New value: +"Query string parameter — date of Photos added to the Daily Log in the format \"YYYY-MM-DD\", or a range of dates in the format \"YYYY-MM-DD...YYYY-MM-DD\"." - changed
Input schema / properties / filters__private / descriptionPrevious value: -"If true, returns only item(s) with a `private` status."New value: +"Query string parameter — if true, returns only item(s) with a `private` status." - changed
Input schema / properties / filters__projection / descriptionPrevious value: -"Return items with the specified projection type."New value: +"Query string parameter — return items with the specified projection type." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__starred / descriptionPrevious value: -"If true, returns only item(s) with a `starred` status."New value: +"Query string parameter — if true, returns only item(s) with a `starred` status." - changed
Input schema / properties / filters__trade_ids / descriptionPrevious value: -"Array of Trade IDs. Returns item(s) with the specified Trade IDs."New value: +"Query string parameter — array of Trade IDs. Returns item(s) with the specified Trade IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / filters__uploader_id / descriptionPrevious value: -"Return item(s) uploaded by the specified User IDs"New value: +"Query string parameter — return item(s) uploaded by the specified User IDs" - changed
Input schema / properties / image_category_id / descriptionPrevious value: -"Optional. ID of the image category to filter the images by."New value: +"Query string parameter — optional. ID of the image category to filter the images by." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / serializer_view / descriptionPrevious value: -"The data set that should be returned from the serializer.\nThe normal view includes default fields, plus links, comments_count, trades.\nThe android view includes default fields, plus trades, comment..."New value: +"Query string parameter — the data set that should be returned from the serializer.\nThe normal view includes default fields, plus links, comments_count, trades.\nThe android view includes default fields, plus trades, comment..." - changed
Input schema / properties / sort / descriptionPrevious value: -"Field to sort by. If the field is passed with a - (EX: -created_at) it is sorted in reverse order"New value: +"Query string parameter — field to sort by. If the field is passed with a - (EX: -created_at) it is sorted in reverse order"
- Changed
list_inactive_company_people13 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the Company"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / filters__connected / descriptionPrevious value: -"If true, returns only people who are connected users. If false, returns only people who are not connected users."New value: +"Query string parameter — if true, returns only people who are connected users. If false, returns only people who are not connected users." - changed
Input schema / properties / filters__is_employee / descriptionPrevious value: -"If true, returns item(s) where `is_employee` value is true."New value: +"Query string parameter — if true, returns item(s) where `is_employee` value is true." - changed
Input schema / properties / filters__job_title / descriptionPrevious value: -"Returns only people who have the specified job title."New value: +"Query string parameter — returns only people who have the specified job title." - changed
Input schema / properties / filters__reference_users_only / descriptionPrevious value: -"If true, returns only people who are reference users."New value: +"Query string parameter — if true, returns only people who are reference users." - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Returns People where the search string matches the Person's name (first, last, or full), email address, mobile phone, business phone, fax number, or job title."New value: +"Query string parameter — returns People where the search string matches the Person's name (first, last, or full), email address, mobile phone, business phone, fax number, or job title." - changed
Input schema / properties / filters__state_code / descriptionPrevious value: -"Returns only people who have the specified state code."New value: +"Query string parameter — returns only people who have the specified state code." - changed
Input schema / properties / filters__trade_id / descriptionPrevious value: -"Array of Trade IDs. Returns item(s) with the specified Trade IDs."New value: +"Query string parameter — array of Trade IDs. Returns item(s) with the specified Trade IDs." - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs." - changed
Input schema / properties / filters__without_reference_users / descriptionPrevious value: -"If true, returns only people who are not reference users."New value: +"Query string parameter — if true, returns only people who are not reference users." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view of the resource to return (which attributes should be present in the response). If a valid view is not provided, it will default to normal."New value: +"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). If a valid view is not provided, it will default to normal."
- Changed
list_inactive_project_people17 fields changed- changed
Input schema / properties / filters__connected / descriptionPrevious value: -"If true, returns only people who are connected users. If false, returns only people who are not connected users."New value: +"Query string parameter — if true, returns only people who are connected users. If false, returns only people who are not connected users." - changed
Input schema / properties / filters__country_code / descriptionPrevious value: -"Returns only people who have the specified country code."New value: +"Query string parameter — returns only people who have the specified country code." - changed
Input schema / properties / filters__include_company_people / descriptionPrevious value: -"If true, returns people in the Company not just the Project. This option only works if the user has permission to create people in the project directory or permission to read from the company direc..."New value: +"Query string parameter — if true, returns people in the Company not just the Project. This option only works if the user has permission to create people in the project directory or permission to read from the company direc..." - changed
Input schema / properties / filters__is_employee / descriptionPrevious value: -"If true, returns item(s) where `is_employee` value is true."New value: +"Query string parameter — if true, returns item(s) where `is_employee` value is true." - changed
Input schema / properties / filters__job_title / descriptionPrevious value: -"Returns only people who have the specified job title."New value: +"Query string parameter — returns only people who have the specified job title." - changed
Input schema / properties / filters__permission_template_id / descriptionPrevious value: -"Array of Permission Template IDs. Returns item(s) with the specified Permission Template IDs."New value: +"Query string parameter — array of Permission Template IDs. Returns item(s) with the specified Permission Template IDs." - changed
Input schema / properties / filters__reference_users_only / descriptionPrevious value: -"If true, returns only people who are reference users."New value: +"Query string parameter — if true, returns only people who are reference users." - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Returns People where the search string matches the Person's name (first, last, or full), email address, mobile phone, business phone, fax number, or job title."New value: +"Query string parameter — returns People where the search string matches the Person's name (first, last, or full), email address, mobile phone, business phone, fax number, or job title." - changed
Input schema / properties / filters__state_code / descriptionPrevious value: -"Returns only people who have the specified state code."New value: +"Query string parameter — returns only people who have the specified state code." - changed
Input schema / properties / filters__trade_id / descriptionPrevious value: -"Array of Trade IDs. Returns item(s) with the specified Trade IDs."New value: +"Query string parameter — array of Trade IDs. Returns item(s) with the specified Trade IDs." - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs." - changed
Input schema / properties / filters__without_reference_users / descriptionPrevious value: -"If true, returns only people who are not reference users."New value: +"Query string parameter — if true, returns only people who are not reference users." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / sort / descriptionPrevious value: -"Return items with the specified sort"New value: +"Query string parameter — return items with the specified sort" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view of the resource to return (which attributes should be present in the response). Users without read permissions to Directory are limited to the normal and extended views. If a v..."New value: +"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). Users without read permissions to Directory are limited to the normal and extended views. If a v..."
- Changed
list_incident_action_types7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__active / descriptionPrevious value: -"If true, returns item(s) with a status of 'active'."New value: +"Query string parameter — if true, returns item(s) with a status of 'active'." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_incident_alert_recipients5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / severity_level_id / descriptionPrevious value: -"Incident Severity Level ID"New value: +"URL path parameter — incident Severity Level ID" - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_incident_alerts12 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__incident_id / descriptionPrevious value: -"Return item(s) with the specified Incident IDs."New value: +"Query string parameter — return item(s) with the specified Incident IDs." - changed
Input schema / properties / filters__injury_id / descriptionPrevious value: -"Return item(s) with the specified Injury IDs."New value: +"Query string parameter — return item(s) with the specified Injury IDs." - changed
Input schema / properties / filters__recipient_id / descriptionPrevious value: -"Return item(s) with the specified recipient (User) IDs"New value: +"Query string parameter — return item(s) with the specified recipient (User) IDs" - changed
Input schema / properties / filters__severity_level_id / descriptionPrevious value: -"Return item(s) with the specified Incident Severity Level IDs"New value: +"Query string parameter — return item(s) with the specified Incident Severity Level IDs" - changed
Input schema / properties / filters__triggered_by_id / descriptionPrevious value: -"Return item(s) with the specified triggered by (User) IDs"New value: +"Query string parameter — return item(s) with the specified triggered by (User) IDs" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_incident_filing_types6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_incident_severity_levels8 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__email_trigger / descriptionPrevious value: -"Return item(s) set to trigger email notifications."New value: +"Query string parameter — return item(s) set to trigger email notifications." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__push_notification_trigger / descriptionPrevious value: -"Return item(s) set to trigger push notifications."New value: +"Query string parameter — return item(s) set to trigger push notifications." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_incidents19 fields changed- changed
Input schema / properties / filters__assignee_id / descriptionPrevious value: -"Return item(s) with a specific Assignee ID or a range of Assignee IDs."New value: +"Query string parameter — return item(s) with a specific Assignee ID or a range of Assignee IDs." - changed
Input schema / properties / filters__contributing_behavior_id / descriptionPrevious value: -"Contributing Behavior ID. Returns item(s) with the specified Contributing Behavior ID."New value: +"Query string parameter — contributing Behavior ID. Returns item(s) with the specified Contributing Behavior ID." - changed
Input schema / properties / filters__contributing_condition_id / descriptionPrevious value: -"Contributing Condition ID. Returns item(s) with the specified Contributing Condition ID."New value: +"Query string parameter — contributing Condition ID. Returns item(s) with the specified Contributing Condition ID." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__custom_status_id / descriptionPrevious value: -"Return item(s) with the specified Custom Status IDs"New value: +"Query string parameter — return item(s) with the specified Custom Status IDs" - changed
Input schema / properties / filters__event_date / descriptionPrevious value: -"Returns item(s) with an event date within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) with an event date within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__hazard_id / descriptionPrevious value: -"Hazard ID. Returns item(s) with the specified Hazard ID."New value: +"Query string parameter — hazard ID. Returns item(s) with the specified Hazard ID." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Return item(s) with the specified Location IDs."New value: +"Query string parameter — return item(s) with the specified Location IDs." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing query. Searchable fields include Incident title, Creator, Witness Statement, Incident Action description, Incident Action Type, Contributing Behavior, Contributing Conditi..."New value: +"Query string parameter — return item(s) containing query. Searchable fields include Incident title, Creator, Witness Statement, Incident Action description, Incident Action Type, Contributing Behavior, Contributing Conditi..." - changed
Input schema / properties / filters__recordable / descriptionPrevious value: -"Return item(s) that are recordable."New value: +"Query string parameter — return item(s) that are recordable." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value." - changed
Input schema / properties / filters__time_unknown / descriptionPrevious value: -"If true, returns item(s) where the time of Incident occurrence is unknown."New value: +"Query string parameter — if true, returns item(s) where the time of Incident occurrence is unknown." - changed
Input schema / properties / filters__type_id / descriptionPrevious value: -"Return item(s) with a specific Type ID or a range of Type IDs."New value: +"Query string parameter — return item(s) with a specific Type ID or a range of Type IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Number of items returned per page (Min: 1, Max: 1000). Defaults to 1000 when parameter is not provided."New value: +"Query string parameter — number of items returned per page (Min: 1, Max: 1000). Defaults to 1000 when parameter is not provided." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_injuries18 fields changed- changed
Input schema / properties / filters__affected_body_part / descriptionPrevious value: -"Return item(s) with any of the specified Affected Body Parts."New value: +"Query string parameter — return item(s) with any of the specified Affected Body Parts." - changed
Input schema / properties / filters__affected_company_id / descriptionPrevious value: -"Array of Company IDs. Returns item(s) with the specified affected Company IDs."New value: +"Query string parameter — array of Company IDs. Returns item(s) with the specified affected Company IDs." - changed
Input schema / properties / filters__affected_party_id / descriptionPrevious value: -"Array of Affected Party IDs. Returns item(s) with the specified Affected Party IDs."New value: +"Query string parameter — array of Affected Party IDs. Returns item(s) with the specified Affected Party IDs." - changed
Input schema / properties / filters__affected_person_id / descriptionPrevious value: -"Array of Person IDs. Returns item(s) with the specified affected Person IDs."New value: +"Query string parameter — array of Person IDs. Returns item(s) with the specified affected Person IDs." - changed
Input schema / properties / filters__affliction_type_id / descriptionPrevious value: -"Return item(s) with the specified Affliction Type IDs"New value: +"Query string parameter — return item(s) with the specified Affliction Type IDs" - changed
Input schema / properties / filters__body_part_id / descriptionPrevious value: -"Return item(s) with the specified Body Part IDs"New value: +"Query string parameter — return item(s) with the specified Body Part IDs" - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__filing_type / descriptionPrevious value: -"Return item(s) with the specified filing types. The `recordable` filing_type filter value is deprecated."New value: +"Query string parameter — return item(s) with the specified filing types. The `recordable` filing_type filter value is deprecated." - changed
Input schema / properties / filters__harm_source_id / descriptionPrevious value: -"Array of Harm Source IDs. Returns item(s) with the specified Harm Source IDs."New value: +"Query string parameter — array of Harm Source IDs. Returns item(s) with the specified Harm Source IDs." - changed
Input schema / properties / filters__managed_equipment_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing query"New value: +"Query string parameter — return item(s) containing query" - changed
Input schema / properties / filters__recordable / descriptionPrevious value: -"Return item(s) that are recordable."New value: +"Query string parameter — return item(s) that are recordable." - changed
Input schema / properties / filters__work_activity_id / descriptionPrevious value: -"Array of Work Activity IDs. Returns item(s) with the specified Work Activity IDs."New value: +"Query string parameter — array of Work Activity IDs. Returns item(s) with the specified Work Activity IDs." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID. When provided, the list will be scoped to only the Injuries for a given Incident."New value: +"Query string parameter — incident ID. When provided, the list will be scoped to only the Injuries for a given Incident." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_inspection_item_references9 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return References with the specified IDs"New value: +"Query string parameter — return References with the specified IDs" - changed
Input schema / properties / filters__item_id / descriptionPrevious value: -"Return Reference(s) with the specified Item IDs"New value: +"Query string parameter — return Reference(s) with the specified Item IDs" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / inspection_id / descriptionPrevious value: -"Unique identifier for the inspection."New value: +"URL path parameter — unique identifier for the inspection." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Sort item(s) by the chosen param; check below for a list of options. The direction of sorting is ascending by default; for descending sort, insert the - symbol before the param."New value: +"Query string parameter — sort item(s) by the chosen param; check below for a list of options. The direction of sorting is ascending by default; for descending sort, insert the - symbol before the param."
- Changed
list_inspection_logs9 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific logs desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter" - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Return item(s) with the specified Location IDs."New value: +"Query string parameter — return item(s) with the specified Location IDs." - changed
Input schema / properties / log_date / descriptionPrevious value: -"Date of specific logs desired in YYYY-MM-DD format"New value: +"Query string parameter — date of specific logs desired in YYYY-MM-DD format" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"
- Changed
list_inspection_types3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Added
list_inspection_users - Removed
list_inspection_users_v1_1 - Changed
list_inspectors3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_instruction_types_on_a_project3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_instructions_on_a_project3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_item_response_sets8 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__active / descriptionPrevious value: -"If true, returns item(s) with a status of 'active'."New value: +"Query string parameter — if true, returns item(s) with a status of 'active'." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_lien_waivers4 fields changed- changed
Input schema / properties / invoice_id / descriptionPrevious value: -"Unique identifier of the invoice to retrieve lien waivers for"New value: +"Query string parameter — unique identifier of the invoice to retrieve lien waivers for" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_line_item_types5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the company. You must supply either a company_id or project_id." - changed
Input schema / properties / filters__origin_id / descriptionPrevious value: -"Origin ID"New value: +"Query string parameter — filter results by origin id" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the project. You must supply either a company_id or project_id."
- Changed
list_links3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_location_filter_options5 fields changed- changed
Input schema / properties / filters__bim_file_id / descriptionPrevious value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids" - changed
Input schema / properties / locale / descriptionPrevious value: -"The locale in which you need the link to your translation file. \nEnsure it is one of the procore available locales."New value: +"Query string parameter — the locale in which you need the link to your translation file. \nEnsure it is one of the procore available locales." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_locations3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_lookaheads3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
list_lookaheads_v1_1 - Changed
list_manpower_logs12 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific logs desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter" - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Return item(s) with the specified Location IDs."New value: +"Query string parameter — return item(s) with the specified Location IDs." - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Returns item(s) matching the specified search query string."New value: +"Query string parameter — returns item(s) matching the specified search query string." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Filter on status for \"pending\" or \"approved\" or \"all\""New value: +"Query string parameter — filter on status for \"pending\" or \"approved\" or \"all\"" - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs." - changed
Input schema / properties / log_date / descriptionPrevious value: -"Date of specific logs desired in YYYY-MM-DD format"New value: +"Query string parameter — date of specific logs desired in YYYY-MM-DD format" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"
- Changed
list_manpower_logs_contact_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_manpower_logs_vendor_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_manual_forecast_line_items3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_manual_holds_for_a_given_invoice4 fields changed- changed
Input schema / properties / invoice_id / descriptionPrevious value: -"Unique identifier of the invoice to retrieve manual holds"New value: +"Query string parameter — unique identifier of the invoice to retrieve manual holds" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_materials3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_meeting_categories4 fields changed- changed
Input schema / properties / meeting_id / descriptionPrevious value: -"ID of the meeting"New value: +"Query string parameter — unique identifier of the meeting" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_meeting_templates3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Removed
list_meetings - Added
list_meetings_project - Added
list_meetings_v1_0 - Removed
list_meetings_v1_1 - Changed
list_monitoring_resources4 fields changed- changed
Input schema / properties / forecast_start_date / descriptionPrevious value: -"Forecast start date, expressed in ISO 8601 date format (YYYY-MM-DD)"New value: +"Query string parameter — forecast start date, expressed in ISO 8601 date format (YYYY-MM-DD)" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_near_misses13 fields changed- changed
Input schema / properties / filters__affected_company_id / descriptionPrevious value: -"Array of Company IDs. Returns item(s) with the specified affected Company IDs."New value: +"Query string parameter — array of Company IDs. Returns item(s) with the specified affected Company IDs." - changed
Input schema / properties / filters__affected_party_id / descriptionPrevious value: -"Array of Affected Party IDs. Returns item(s) with the specified Affected Party IDs."New value: +"Query string parameter — array of Affected Party IDs. Returns item(s) with the specified Affected Party IDs." - changed
Input schema / properties / filters__affected_person_id / descriptionPrevious value: -"Array of Person IDs. Returns item(s) with the specified affected Person IDs."New value: +"Query string parameter — array of Person IDs. Returns item(s) with the specified affected Person IDs." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__harm_source_id / descriptionPrevious value: -"Array of Harm Source IDs. Returns item(s) with the specified Harm Source IDs."New value: +"Query string parameter — array of Harm Source IDs. Returns item(s) with the specified Harm Source IDs." - changed
Input schema / properties / filters__managed_equipment_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing query"New value: +"Query string parameter — return item(s) containing query" - changed
Input schema / properties / filters__work_activity_id / descriptionPrevious value: -"Array of Work Activity IDs. Returns item(s) with the specified Work Activity IDs."New value: +"Query string parameter — array of Work Activity IDs. Returns item(s) with the specified Work Activity IDs." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID. When provided, the list will be scoped to only the Near Misses for a given Incident."New value: +"Query string parameter — incident ID. When provided, the list will be scoped to only the Near Misses for a given Incident." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_notes_logs10 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific logs desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Return item(s) created by the specified User ID"New value: +"Query string parameter — return item(s) created by the specified User ID" - changed
Input schema / properties / filters__daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter" - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Filters by specific location (Note: Use *either* this or location_id_with_sublocations, but not both)"New value: +"Query string parameter — filters by specific location (Note: Use *either* this or location_id_with_sublocations, but not both)" - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Filter on status for \"pending\" or \"approved\" or \"all\""New value: +"Query string parameter — filter on status for \"pending\" or \"approved\" or \"all\"" - changed
Input schema / properties / log_date / descriptionPrevious value: -"Date of specific logs desired in YYYY-MM-DD format"New value: +"Query string parameter — date of specific logs desired in YYYY-MM-DD format" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"
- Changed
list_observation_assignee_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_observation_category_configurable_field_sets3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_observation_default_distribution_members3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_observation_item_response_logs4 fields changed- changed
Input schema / properties / item_id / descriptionPrevious value: -"Observation Item ID"New value: +"URL path parameter — unique identifier of the item" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_observation_items16 fields changed- changed
Input schema / properties / filters__assignee_company_id / descriptionPrevious value: -"Array of Vendor IDs. Returns item(s) where the assignee is associated to the specified Vendor ID."New value: +"Query string parameter — array of Vendor IDs. Returns item(s) where the assignee is associated to the specified Vendor ID." - changed
Input schema / properties / filters__assignee_id / descriptionPrevious value: -"Return item(s) assigned to the specified User ID."New value: +"Query string parameter — return item(s) assigned to the specified User ID." - changed
Input schema / properties / filters__checklist_item_id / descriptionPrevious value: -"Return Observations(s) originating from the specified Checklist Item(s)."New value: +"Query string parameter — return Observations(s) originating from the specified Checklist Item(s)." - changed
Input schema / properties / filters__checklist_list_id / descriptionPrevious value: -"Array of Checklist List IDs. Return item(s) associated with the specified Checklist List IDs."New value: +"Query string parameter — array of Checklist List IDs. Return item(s) associated with the specified Checklist List IDs." - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Return item(s) with the specified Location IDs."New value: +"Query string parameter — return item(s) with the specified Location IDs." - changed
Input schema / properties / filters__priority / descriptionPrevious value: -"Return item(s) with the specified priorities.\n"New value: +"Query string parameter — return item(s) with the specified priorities.\n" - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Return item(s) matching the specified Search query."New value: +"Query string parameter — return item(s) matching the specified Search query." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Return item(s) with the specified status values. The mapping is as follows:\n```\n 0: Initiated\n 1: Ready For reviewed\n 2: Not Accepted\n 3: Closed\n```"New value: +"Query string parameter — return item(s) with the specified status values. The mapping is as follows:\n```\n 0: Initiated\n 1: Ready For reviewed\n 2: Not Accepted\n 3: Closed\n```" - changed
Input schema / properties / filters__trade_ids / descriptionPrevious value: -"Array of Trade IDs. Returns item(s) with the specified Trade IDs."New value: +"Query string parameter — array of Trade IDs. Returns item(s) with the specified Trade IDs." - changed
Input schema / properties / filters__type_id / descriptionPrevious value: -"Return item(s) with the specified Observation Type ID."New value: +"Query string parameter — return item(s) with the specified Observation Type ID." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_observation_potential_distribution_members4 fields changed- changed
Input schema / properties / filters__search / descriptionPrevious value: -"Return item(s) matching the specified Search query."New value: +"Query string parameter — return item(s) matching the specified Search query." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_observation_types4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_observations_response_logs5 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_of_actual_production_quantity_ids9 fields changed- changed
Input schema / properties / filters__crew_id / descriptionPrevious value: -"Crew ID. Returns item(s) with the specified Crew ID."New value: +"Query string parameter — crew ID. Returns item(s) with the specified Crew ID." - changed
Input schema / properties / filters__date / descriptionPrevious value: -"Returns item(s) within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Location ID. Returns item(s) with the specified Location ID or a range of Location IDs."New value: +"Query string parameter — location ID. Returns item(s) with the specified Location ID or a range of Location IDs." - changed
Input schema / properties / filters__timesheet_id / descriptionPrevious value: -"Timesheet ID. Returns item(s) with the specified Timesheet ID."New value: +"Query string parameter — timesheet ID. Returns item(s) with the specified Timesheet ID." - changed
Input schema / properties / filters__unit_of_measure / descriptionPrevious value: -"Return item(s) with the specified unit of measure."New value: +"Query string parameter — return item(s) with the specified unit of measure." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_of_all_time_and_material_equipment_logs3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
list_of_budget_change_histories - Removed
list_of_budget_change_histories_v2_0 - Added
list_of_change_history_events_for_an_action_plan - Removed
list_of_change_history_events_for_an_action_plan_v2_0 - Changed
list_of_company_action_plan_templates8 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_type_id / descriptionPrevious value: -"Action Plan Type ID. Returns item(s) with the specified Action Plan Type ID(s)."New value: +"Query string parameter — action Plan Type ID. Returns item(s) with the specified Action Plan Type ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Removed
list_of_company_action_plan_templates_v1_1 - Changed
list_of_company_level_emails5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / topic_id / descriptionPrevious value: -"Topic ID"New value: +"Query string parameter — unique identifier of the topic" - changed
Input schema / properties / topic_type / descriptionPrevious value: -"The type of the topic to be associated with the communication"New value: +"Query string parameter — the type of the topic to be associated with the communication"
- Changed
list_of_deleted_submittals21 fields changed- changed
Input schema / properties / filters__approver_id / descriptionPrevious value: -"Array of User IDs. Return item(s) where the specified User IDs are in the approver list. A single integer is also accepted."New value: +"Query string parameter — array of User IDs. Return item(s) where the specified User IDs are in the approver list. A single integer is also accepted." - changed
Input schema / properties / filters__ball_in_court_id / descriptionPrevious value: -"User ID. Return item(s) where the specified User ID is the Ball in Court."New value: +"Query string parameter — user ID. Return item(s) where the specified User ID is the Ball in Court." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__current_revision / descriptionPrevious value: -"Default false. If true, only current revisions are shown. If false, all submittals are shown, regardless of whether or not it is the current revision."New value: +"Query string parameter — default false. If true, only current revisions are shown. If false, all submittals are shown, regardless of whether or not it is the current revision." - changed
Input schema / properties / filters__division / descriptionPrevious value: -"Array of Divisions to filter on. A Division is the first two digits from the Specification Section Number. A single Division is also accepted."New value: +"Query string parameter — array of Divisions to filter on. A Division is the first two digits from the Specification Section Number. A single Division is also accepted." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Array of Location IDs. A single Location ID is also accepted."New value: +"Query string parameter — array of Location IDs. A single Location ID is also accepted." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__received_from_id / descriptionPrevious value: -"Received From ID"New value: +"Query string parameter — filter results by received from id" - changed
Input schema / properties / filters__response_id / descriptionPrevious value: -"Array of Response IDs. A single Response ID is also accepted."New value: +"Query string parameter — array of Response IDs. A single Response ID is also accepted." - changed
Input schema / properties / filters__responsible_contractor_id / descriptionPrevious value: -"Array of Responsible Contractor IDs. A single Responsible Contractor ID is also accepted."New value: +"Query string parameter — array of Responsible Contractor IDs. A single Responsible Contractor ID is also accepted." - changed
Input schema / properties / filters__specification_section_id / descriptionPrevious value: -"Array of Specification Section IDs. A single Specification Section ID is also accepted."New value: +"Query string parameter — array of Specification Section IDs. A single Specification Section ID is also accepted." - changed
Input schema / properties / filters__status_id / descriptionPrevious value: -"Array of Status IDs. A single Status ID is also accepted."New value: +"Query string parameter — array of Status IDs. A single Status ID is also accepted." - changed
Input schema / properties / filters__submittal_manager_id / descriptionPrevious value: -"Array of Submittal Manager IDs. A single Submittal Manager ID is also accepted."New value: +"Query string parameter — array of Submittal Manager IDs. A single Submittal Manager ID is also accepted." - changed
Input schema / properties / filters__submittal_package_id / descriptionPrevious value: -"Array of Submittal Package IDs. Returns item(s) associated with the specified Submittal Package IDs. A single integer value is also accepted."New value: +"Query string parameter — array of Submittal Package IDs. Returns item(s) associated with the specified Submittal Package IDs. A single integer value is also accepted." - changed
Input schema / properties / filters__type / descriptionPrevious value: -"Array of Submittal Types. A single Submittal Type is also accepted."New value: +"Query string parameter — array of Submittal Types. A single Submittal Type is also accepted." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Removed
list_of_deleted_submittals_v1_1 - Added
list_of_document_revisions_company - Removed
list_of_document_revisions_company_v2_0 - Added
list_of_document_revisions_project - Removed
list_of_document_revisions_project_v2_0 - Changed
list_of_emails5 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / topic_id / descriptionPrevious value: -"Topic ID"New value: +"Query string parameter — unique identifier of the topic" - changed
Input schema / properties / topic_type / descriptionPrevious value: -"The type of the topic to be associated with the communication"New value: +"Query string parameter — the type of the topic to be associated with the communication"
- Changed
list_of_number_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_of_project_action_plan_templates9 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__provider_type / descriptionPrevious value: -"Return item(s) with the specified Provider Type(s)"New value: +"Query string parameter — return item(s) with the specified Provider Type(s)" - changed
Input schema / properties / filters__type_id / descriptionPrevious value: -"Return item(s) with a specific Action Plan Type ID or a range of Action Plan Type IDs."New value: +"Query string parameter — return item(s) with a specific Action Plan Type ID or a range of Action Plan Type IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_of_punch_list_assignee_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_of_punch_list_vendor_filter_options3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_of_purchase_order_contracts10 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__include_deleted / descriptionPrevious value: -"Use 'only' for only deleted resources. Use 'with' for deleted and undeleted resources."New value: +"Query string parameter — use 'only' for only deleted resources. Use 'with' for deleted and undeleted resources." - changed
Input schema / properties / filters__origin_id / descriptionPrevious value: -"Origin ID. Returns item(s) with the specified Origin ID."New value: +"Query string parameter — origin ID. Returns item(s) with the specified Origin ID." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Return item(s) with the specified Purchase Order Contract status."New value: +"Query string parameter — return item(s) with the specified Purchase Order Contract status." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies how much information to show for each purchase order contract. The compact view is returned by default."New value: +"Query string parameter — specifies how much information to show for each purchase order contract. The compact view is returned by default."
- Added
list_operations - Removed
list_operations_v2_0 - Changed
list_payee_bank_details2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / payeeExternalIds / descriptionPrevious value: -"payeeExternalIds"New value: +"JSON request body field — the payeeexternalids for this Payments operation"
- Changed
list_payment_applications_owner_invoices_for_a_project3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_payment_applications_owner_invoices_for_prime_contract6 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs"New value: +"Query string parameter — return item(s) with the specified IDs" - changed
Input schema / properties / filters__is_last / descriptionPrevious value: -"Setting this to true will return only the last item. Setting this to false will return all the items except the last one."New value: +"Query string parameter — setting this to true will return only the last item. Setting this to false will return all the items except the last one." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page (default 30)"New value: +"Query string parameter — elements per page (default 30)" - changed
Input schema / properties / prime_contract_id / descriptionPrevious value: -"Prime Contract ID"New value: +"URL path parameter — unique identifier of the prime contract" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_payment_project_configurations4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / search / descriptionPrevious value: -"Search query to filter records by"New value: +"Query string parameter — search query to filter records by"
- Changed
list_payments_beneficiaries3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
list_payments_subtier_waivers5 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / subtier_requisition_id / descriptionPrevious value: -"Unique identifier of the subtier requisition, supports comma separated list"New value: +"Query string parameter — unique identifier of the subtier requisition, supports comma separated list" - changed
Input schema / properties / waiver_type / descriptionPrevious value: -"Waiver type of the subtier waiver. Can only be either \"unconditional\" or \"conditional\""New value: +"Query string parameter — waiver type of the subtier waiver. Can only be either \"unconditional\" or \"conditional\""
- Changed
list_payments_subtiers_for_the_commitment5 fields changed- changed
Input schema / properties / commitment_id / descriptionPrevious value: -"ID of the commitment"New value: +"URL path parameter — iD of the commitment" - changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier of the subtier"New value: +"Query string parameter — unique identifier of the subtier" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
list_payments_subtiers_for_the_requisition6 fields changed- changed
Input schema / properties / commitment_id / descriptionPrevious value: -"Unique identifier of the commitment"New value: +"Query string parameter — unique identifier of the commitment" - changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier of the subtier"New value: +"Query string parameter — unique identifier of the subtier" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / requisition_id / descriptionPrevious value: -"ID of the requisition"New value: +"URL path parameter — iD of the requisition"
- Changed
list_pdf_template_configs8 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__only_parent / descriptionPrevious value: -"Return only parent records."New value: +"Query string parameter — return only parent records." - changed
Input schema / properties / filters__project_id / descriptionPrevious value: -"Return item(s) with the Project ID."New value: +"Query string parameter — return item(s) with the Project ID." - changed
Input schema / properties / filters__record_generic_tool_id / descriptionPrevious value: -"Return item(s) with the specified Generic Tool ID."New value: +"Query string parameter — return item(s) with the specified Generic Tool ID." - changed
Input schema / properties / filters__template_name / descriptionPrevious value: -"Return item(s) with provided template_name."New value: +"Query string parameter — return item(s) with provided template_name." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / scope / descriptionPrevious value: -"Return only scoped records."New value: +"Query string parameter — return only scoped records."
- Changed
list_permission_templates5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__type / descriptionPrevious value: -"Allows filtering by template type. If none is provided, default is \"project_tools\". Allowed types = company_tools, project_tools, global. Example - ?filters[type]=company_tools"New value: +"Query string parameter — allows filtering by template type. If none is provided, default is \"project_tools\". Allowed types = company_tools, project_tools, global. Example - ?filters[type]=company_tools" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / view / descriptionPrevious value: -"Returns detailed permission templates if view=with_permissions is specified."New value: +"Query string parameter — returns detailed permission templates if view=with_permissions is specified."
- Changed
list_permission_templates_for_a_company_user4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / user_id / descriptionPrevious value: -"User ID"New value: +"URL path parameter — unique identifier of the user"
- Changed
list_plan_revision_logs8 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific logs desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter" - changed
Input schema / properties / log_date / descriptionPrevious value: -"Date of specific logs desired in YYYY-MM-DD format"New value: +"Query string parameter — date of specific logs desired in YYYY-MM-DD format" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"
- Added
list_possible_assignees_company - Removed
list_possible_assignees_company_v2_0 - Added
list_possible_assignees_project - Removed
list_possible_assignees_project_v2_0 - Changed
list_possible_tool_filter_values6 fields changed- changed
Input schema / properties / filter_name / descriptionPrevious value: -"Filter name"New value: +"URL path parameter — the filter name for this Portfolio operation" - changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / tab / descriptionPrevious value: -"Tab name"New value: +"Query string parameter — tab name" - changed
Input schema / properties / tool / descriptionPrevious value: -"Tool name"New value: +"Query string parameter — tool name"
- Changed
list_potential_change_order_line_items9 fields changed- changed
Input schema / properties / filters__cost_code_id / descriptionPrevious value: -"Cost Code ID. Returns item(s) with the specified Cost Code ID or within the specified range of Cost Code IDs."New value: +"Query string parameter — cost Code ID. Returns item(s) with the specified Cost Code ID or within the specified range of Cost Code IDs." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__line_item_type_id / descriptionPrevious value: -"Line Item Type ID. Returns item(s) with the specified Line Item Type ID or range of Line Item Type IDs."New value: +"Query string parameter — line Item Type ID. Returns item(s) with the specified Line Item Type ID or range of Line Item Type IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / potential_change_order_id / descriptionPrevious value: -"Potential Change Order ID"New value: +"URL path parameter — potential Change Order ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_potential_change_orders13 fields changed- changed
Input schema / properties / filters__contract_id / descriptionPrevious value: -"Contract ID. Returns item(s) with the specified Contract ID."New value: +"Query string parameter — contract ID. Returns item(s) with the specified Contract ID." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__due_date / descriptionPrevious value: -"Returns item(s) due within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) due within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__include_deleted / descriptionPrevious value: -"Use 'only' for only deleted resources. Use 'with' for deleted and undeleted resources."New value: +"Query string parameter — use 'only' for only deleted resources. Use 'with' for deleted and undeleted resources." - changed
Input schema / properties / filters__invoiced_date / descriptionPrevious value: -"Returns item(s) invoiced within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) invoiced within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__origin_id / descriptionPrevious value: -"Origin ID. Returns item(s) with the specified Origin ID."New value: +"Query string parameter — origin ID. Returns item(s) with the specified Origin ID." - changed
Input schema / properties / filters__paid_date / descriptionPrevious value: -"Returns item(s) paid within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) paid within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__reviewed_at / descriptionPrevious value: -"Returns item(s) reviewed within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) reviewed within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Added
list_potential_distribution_members_for_specifications - Removed
list_potential_distribution_members_for_specifications_v2_1 - Changed
list_potential_points_of_contact4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"Query string parameter — unique identifier of the vendor"
- Added
list_prime_change_order_line_items - Removed
list_prime_change_order_line_items_v2_0 - Removed
list_prime_contract_line_items - Added
list_prime_contract_line_items_project - Added
list_prime_contract_line_items_v1_0 - Removed
list_prime_contract_line_items_v2_0 - Added
list_prime_contracts - Removed
list_prime_contracts_v2_0 - Changed
list_productivity_logs8 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific logs desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter" - changed
Input schema / properties / log_date / descriptionPrevious value: -"Date of specific logs desired in YYYY-MM-DD format"New value: +"Query string parameter — date of specific logs desired in YYYY-MM-DD format" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"
- Changed
list_programs3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_programs_for_a_company_user5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / scope / descriptionPrevious value: -"The scope to use when getting the filter options for project assignments.\nThe user scope returns only filter options for projects that the user is currently assigned to.\nThe company scope returns a..."New value: +"Query string parameter — the scope to use when getting the filter options for project assignments.\nThe user scope returns only filter options for projects that the user is currently assigned to.\nThe company scope returns a..." - changed
Input schema / properties / user_id / descriptionPrevious value: -"User ID"New value: +"URL path parameter — unique identifier of the user"
- Changed
list_project_action_plan_template_items9 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template ID."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template ID." - changed
Input schema / properties / filters__plan_template_section_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template Section ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template Section ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_project_action_plan_template_references9 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template ID."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template ID." - changed
Input schema / properties / filters__plan_template_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template Item ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template Item ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_project_action_plan_template_sections8 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return section(s) associated with the specified Action Plan Template ID(s)."New value: +"Query string parameter — return section(s) associated with the specified Action Plan Template ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_project_action_plan_template_test_record_requests10 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return section(s) associated with the specified Action Plan Template ID(s)."New value: +"Query string parameter — return section(s) associated with the specified Action Plan Template ID(s)." - changed
Input schema / properties / filters__plan_template_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template Item ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template Item ID(s)." - changed
Input schema / properties / filters__type / descriptionPrevious value: -"Return item(s) associated with the specified Record Type(s)."New value: +"Query string parameter — return item(s) associated with the specified Record Type(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_project_assignments_for_a_company_user16 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / direction / descriptionPrevious value: -"Sort direction. Default is ascending, nulls first."New value: +"Query string parameter — sort direction. Default is ascending, nulls first." - changed
Input schema / properties / filters__active / descriptionPrevious value: -"If true, returns item(s) with a status of 'active'."New value: +"Query string parameter — if true, returns item(s) with a status of 'active'." - changed
Input schema / properties / filters__assignment_status / descriptionPrevious value: -"Filters projects to those matching the given assignment status."New value: +"Query string parameter — filters projects to those matching the given assignment status." - changed
Input schema / properties / filters__by_program / descriptionPrevious value: -"Return item(s) with the specified project program ID(s)."New value: +"Query string parameter — return item(s) with the specified project program ID(s)." - changed
Input schema / properties / filters__by_region / descriptionPrevious value: -"Return item(s) with the specified project region ID(s)."New value: +"Query string parameter — return item(s) with the specified project region ID(s)." - changed
Input schema / properties / filters__by_stage / descriptionPrevious value: -"Return item(s) with the specified project stage ID(s)."New value: +"Query string parameter — return item(s) with the specified project stage ID(s)." - changed
Input schema / properties / filters__by_status / descriptionPrevious value: -"Return item(s) with the specified status value. Must be one of Active, Inactive, or All."New value: +"Query string parameter — return item(s) with the specified status value. Must be one of Active, Inactive, or All." - changed
Input schema / properties / filters__by_type / descriptionPrevious value: -"Return item(s) with the specified project type ID(s)."New value: +"Query string parameter — return item(s) with the specified project type ID(s)." - changed
Input schema / properties / filters__name / descriptionPrevious value: -"Filter item(s) with matching name."New value: +"Query string parameter — filter item(s) with matching name." - changed
Input schema / properties / filters__project_permission_templates / descriptionPrevious value: -"Return item(s) with the Project Permissions Template ID(s)."New value: +"Query string parameter — return item(s) with the Project Permissions Template ID(s)." - changed
Input schema / properties / filters__project_roles / descriptionPrevious value: -"Return item(s) with the Project Role ID(s)."New value: +"Query string parameter — return item(s) with the Project Role ID(s)." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Sort the results by the specified field."New value: +"Query string parameter — sort the results by the specified field." - changed
Input schema / properties / user_id / descriptionPrevious value: -"User ID"New value: +"URL path parameter — unique identifier of the user"
- Changed
list_project_bid_types3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_project_checklist_templates9 fields changed- changed
Input schema / properties / filters__inspection_type_id / descriptionPrevious value: -"Array of Inspection Type IDs. Return item(s) associated with the specified Inspection Type IDs."New value: +"Query string parameter — array of Inspection Type IDs. Return item(s) associated with the specified Inspection Type IDs." - added
Input schema / properties / filters__needs_updateAdded value: +{ + "description": "Query string parameter — boolean. Return template(s) whose configuration is in need of updates.", + "type": "boolean" +} - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__response_set_id / descriptionPrevious value: -"Array of Item Response Set IDs. Return list template(s) whose items are associated with the given Response Set IDs."New value: +"Query string parameter — array of Item Response Set IDs. Return list template(s) whose items are associated with the given Response Set IDs." - changed
Input schema / properties / filters__trade_ids / descriptionPrevious value: -"Array of Trade IDs. Returns item(s) with the specified Trade IDs."New value: +"Query string parameter — array of Trade IDs. Returns item(s) with the specified Trade IDs." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Sorts the list of Checklist Templates on the attribute given. By default the list is in ascending order. Use '-attribute' to sort in descending order.\nEx. 'sort=-trade'."New value: +"Query string parameter — sorts the list of Checklist Templates on the attribute given. By default the list is in ascending order. Use '-attribute' to sort in descending order.\nEx. 'sort=-trade'."
- Removed
list_project_checklist_templates_v1_1 - Changed
list_project_configurable_field_sets11 fields changed- changed
Input schema / properties / action_plan_type_id / descriptionPrevious value: -"Filter by Action Plan type id."New value: +"Query string parameter — filter by Action Plan type id." - changed
Input schema / properties / category / descriptionPrevious value: -"Filter by category."New value: +"Query string parameter — filter by category." - changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Filter by generic tool id(s). Could be a integer or an array of integer."New value: +"Query string parameter — filter by generic tool id(s). Could be a integer or an array of integer." - changed
Input schema / properties / include_default_configurable_field_sets / descriptionPrevious value: -"Flag to include the default values for each type of Configurable Field Set if one has not been created."New value: +"Query string parameter — flag to include the default values for each type of Configurable Field Set if one has not been created." - changed
Input schema / properties / include_lov_entries / descriptionPrevious value: -"whether or not to include LOV entries in the response\n(defaults to true)"New value: +"Query string parameter — whether or not to include LOV entries in the response\n(defaults to true)" - changed
Input schema / properties / inspection_type_id / descriptionPrevious value: -"Filter by inspection type id."New value: +"Query string parameter — filter by inspection type id." - changed
Input schema / properties / observations_category_id / descriptionPrevious value: -"Filter by observations category id."New value: +"Query string parameter — filter by observations category id." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / types__ / descriptionPrevious value: -"Filter by of configurable field set types"New value: +"Query string parameter — filter by of configurable field set types"
- Changed
list_project_cost_codes3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_project_country_codes3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
list_project_dates_company - Changed
list_project_dates_v1_03 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_project_dates_v1_0_23 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Removed
list_project_dates_v2_0 - Changed
list_project_distribution_groups_v1_010 fields changed- changed
Input schema / properties / domain_id / descriptionPrevious value: -"Parameter affecting the scope for the Distribution Groups, by default it is the Domain ID of the Submittals Tool. Will return only Distributions Groups who users that have access to the Tool specif..."New value: +"Query string parameter — parameter affecting the scope for the Distribution Groups, by default it is the Domain ID of the Submittals Tool. Will return only Distributions Groups who users that have access to the Tool specif..." - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Returns item(s) matching the specified search query string."New value: +"Query string parameter — returns item(s) matching the specified search query string." - changed
Input schema / properties / include_ancestors / descriptionPrevious value: -"Parameter affecting what groups will be returned from this endpoint. When 'true', this endpoint will only return distribution groups with users that match the provided (or default) `domain_id` and ..."New value: +"Query string parameter — parameter affecting what groups will be returned from this endpoint. When 'true', this endpoint will only return distribution groups with users that match the provided (or default) `domain_id` and ..." - changed
Input schema / properties / min_ual / descriptionPrevious value: -"Parameter affecting the scope for the Distribution Groups, by default it is the 'read' user access level. Will return only Distributions Groups who users that have the min ual specified by the 'min..."New value: +"Query string parameter — parameter affecting the scope for the Distribution Groups, by default it is the 'read' user access level. Will return only Distributions Groups who users that have the min ual specified by the 'min..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort." - changed
Input schema / properties / ual / descriptionPrevious value: -"Parameter affecting the scope for the Distribution Groups. Will return only Distributions Groups who users that have the exact ual specified by the 'ual'. If provided, this will take precendence o..."New value: +"Query string parameter — parameter affecting the scope for the Distribution Groups. Will return only Distributions Groups who users that have the exact ual specified by the 'ual'. If provided, this will take precendence o..." - changed
Input schema / properties / view / descriptionPrevious value: -"Parameter affecting what level of detail will be returned from the endpoint. 'extended' will include the users included in each distribution group."New value: +"Query string parameter — parameter affecting what level of detail will be returned from the endpoint. 'extended' will include the users included in each distribution group."
- Changed
list_project_distribution_groups_v1_0_29 fields changed- changed
Input schema / properties / domain_id / descriptionPrevious value: -"Parameter affecting the scope for the Distribution Groups, by default it is the Domain ID of the Submittals Tool. Will return only Distributions Groups who users that have access to the Tool specif..."New value: +"Query string parameter — parameter affecting the scope for the Distribution Groups, by default it is the Domain ID of the Submittals Tool. Will return only Distributions Groups who users that have access to the Tool specif..." - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Returns item(s) matching the specified search query string."New value: +"Query string parameter — returns item(s) matching the specified search query string." - changed
Input schema / properties / min_ual / descriptionPrevious value: -"Parameter affecting the scope for the Distribution Groups, by default it is the 'read' user access level. Will return only Distributions Groups who users that have the min ual specified by the 'min..."New value: +"Query string parameter — parameter affecting the scope for the Distribution Groups, by default it is the 'read' user access level. Will return only Distributions Groups who users that have the min ual specified by the 'min..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort." - changed
Input schema / properties / ual / descriptionPrevious value: -"Parameter affecting the scope for the Distribution Groups. Will return only Distributions Groups who users that have the exact ual specified by the 'ual'. If provided, this will take precendence o..."New value: +"Query string parameter — parameter affecting the scope for the Distribution Groups. Will return only Distributions Groups who users that have the exact ual specified by the 'ual'. If provided, this will take precendence o..." - changed
Input schema / properties / view / descriptionPrevious value: -"Parameter affecting what level of detail will be returned from the endpoint. 'extended' will include the users included in each distribution group."New value: +"Query string parameter — parameter affecting what level of detail will be returned from the endpoint. 'extended' will include the users included in each distribution group."
- Changed
list_project_document_custom_tags4 fields changed- changed
Input schema / properties / filters__document_id / descriptionPrevious value: -"ID of the Folder or File"New value: +"Query string parameter — iD of the Folder or File" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_project_equipment_logs3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_project_equipment_maintenance_logs3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_project_folders_and_files6 fields changed- changed
Input schema / properties / exclude_files / descriptionPrevious value: -"Exclude child files from results. Must be either true or false."New value: +"Query string parameter — exclude child files from results. Must be either true or false." - changed
Input schema / properties / exclude_folders / descriptionPrevious value: -"Exclude child folders from results. Must be either true or false."New value: +"Query string parameter — exclude child folders from results. Must be either true or false." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / show_latest_file_version_only / descriptionPrevious value: -"Show only the latest file version. Must be either true or false."New value: +"Query string parameter — show only the latest file version. Must be either true or false."
- Changed
list_project_inactive_users4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort."
- Changed
list_project_inactive_vendors5 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Return items with the specified sort"New value: +"Query string parameter — return items with the specified sort" - changed
Input schema / properties / view / descriptionPrevious value: -"The normal view provides what is shown below.\nThe extended view is the same as the normal view but includes children_count, legal_name, parent, and bidding.\nThe default view is normal."New value: +"Query string parameter — the normal view provides what is shown below.\nThe extended view is the same as the normal view but includes children_count, legal_name, parent, and bidding.\nThe default view is normal."
- Changed
list_project_inspection_template_item_reference9 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return References with the specified IDs"New value: +"Query string parameter — return References with the specified IDs" - changed
Input schema / properties / filters__item_id / descriptionPrevious value: -"Return Reference(s) with the specified Item IDs and Synced Company Template Item References"New value: +"Query string parameter — return Reference(s) with the specified Item IDs and Synced Company Template Item References" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / inspection_template_id / descriptionPrevious value: -"The ID of the Project Inspection Template"New value: +"URL path parameter — the ID of the Project Inspection Template" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Sort item(s) by the chosen param; check below for a list of options. The direction of sorting is ascending by default; for descending sort, insert the - symbol before the param."New value: +"Query string parameter — sort item(s) by the chosen param; check below for a list of options. The direction of sorting is ascending by default; for descending sort, insert the - symbol before the param."
- Changed
list_project_insurances4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Extended view of data"New value: +"Query string parameter — extended view of data"
- Changed
list_project_job_titles3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
list_project_links - Removed
list_project_links_v2_0 - Changed
list_project_locations13 fields changed- changed
Input schema / properties / filters__code / descriptionPrevious value: -"Return location(s) matching any of the specified codes in the search term."New value: +"Query string parameter — return location(s) matching any of the specified codes in the search term." - changed
Input schema / properties / filters__depth_range / descriptionPrevious value: -"Return item(s) with a tree depth within the specified range.\n\nExamples:\n`0...1` - Parents and children\n`0...2` - Parents, children, and grandchildren\n`1...2` - Children and grandchildren"New value: +"Query string parameter — return item(s) with a tree depth within the specified range.\n\nExamples:\n`0...1` - Parents and children\n`0...2` - Parents, children, and grandchildren\n`1...2` - Children and grandchildren" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__parent_id / descriptionPrevious value: -"Return location(s) with the specified parent_ids."New value: +"Query string parameter — return location(s) with the specified parent_ids." - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Returns item(s) matching the specified search query string."New value: +"Query string parameter — returns item(s) matching the specified search query string." - changed
Input schema / properties / filters__search_with_code / descriptionPrevious value: -"Return item(s) where the location code or the location name match the search term"New value: +"Query string parameter — return item(s) where the location code or the location name match the search term" - changed
Input schema / properties / filters__sublocations_for / descriptionPrevious value: -"Return sublocations (descendants) of the specified location ids."New value: +"Query string parameter — return sublocations (descendants) of the specified location ids." - changed
Input schema / properties / filters__superlocations_for / descriptionPrevious value: -"Return superlocations (ancestors) of the specified location ids."New value: +"Query string parameter — return superlocations (ancestors) of the specified location ids." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_project_memberships3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_project_names_for_a_company_user5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / scope / descriptionPrevious value: -"The scope to use when getting the filter options for project assignments.\nThe user scope returns only filter options for projects that the user is currently assigned to.\nThe company scope returns a..."New value: +"Query string parameter — the scope to use when getting the filter options for project assignments.\nThe user scope returns only filter options for projects that the user is currently assigned to.\nThe company scope returns a..." - changed
Input schema / properties / user_id / descriptionPrevious value: -"User ID"New value: +"URL path parameter — unique identifier of the user"
- Changed
list_project_numbers_for_a_company_user5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / scope / descriptionPrevious value: -"The scope to use when getting the filter options for project assignments.\nThe user scope returns only filter options for projects that the user is currently assigned to.\nThe company scope returns a..."New value: +"Query string parameter — the scope to use when getting the filter options for project assignments.\nThe user scope returns only filter options for projects that the user is currently assigned to.\nThe company scope returns a..." - changed
Input schema / properties / user_id / descriptionPrevious value: -"User ID"New value: +"URL path parameter — unique identifier of the user"
- Changed
list_project_observation_types4 fields changed- changed
Input schema / properties / filters__active / descriptionPrevious value: -"Filter by `active` status"New value: +"Query string parameter — filter by `active` status" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_project_owner_types3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_project_people17 fields changed- changed
Input schema / properties / filters__connected / descriptionPrevious value: -"If true, returns only people who are connected users. If false, returns only people who are not connected users."New value: +"Query string parameter — if true, returns only people who are connected users. If false, returns only people who are not connected users." - changed
Input schema / properties / filters__country_code / descriptionPrevious value: -"Returns only people who have the specified country code."New value: +"Query string parameter — returns only people who have the specified country code." - changed
Input schema / properties / filters__include_company_people / descriptionPrevious value: -"If true, returns people in the Company not just the Project. This option only works if the user has permission to create people in the project directory or permission to read from the company direc..."New value: +"Query string parameter — if true, returns people in the Company not just the Project. This option only works if the user has permission to create people in the project directory or permission to read from the company direc..." - changed
Input schema / properties / filters__is_employee / descriptionPrevious value: -"If true, returns item(s) where `is_employee` value is true."New value: +"Query string parameter — if true, returns item(s) where `is_employee` value is true." - changed
Input schema / properties / filters__job_title / descriptionPrevious value: -"Returns only people who have the specified job title."New value: +"Query string parameter — returns only people who have the specified job title." - changed
Input schema / properties / filters__permission_template_id / descriptionPrevious value: -"Array of Permission Template IDs. Returns item(s) with the specified Permission Template IDs."New value: +"Query string parameter — array of Permission Template IDs. Returns item(s) with the specified Permission Template IDs." - changed
Input schema / properties / filters__reference_users_only / descriptionPrevious value: -"If true, returns only people who are reference users."New value: +"Query string parameter — if true, returns only people who are reference users." - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Returns People where the search string matches the Person's name (first, last, or full), email address, mobile phone, business phone, fax number, or job title."New value: +"Query string parameter — returns People where the search string matches the Person's name (first, last, or full), email address, mobile phone, business phone, fax number, or job title." - changed
Input schema / properties / filters__state_code / descriptionPrevious value: -"Returns only people who have the specified state code."New value: +"Query string parameter — returns only people who have the specified state code." - changed
Input schema / properties / filters__trade_id / descriptionPrevious value: -"Array of Trade IDs. Returns item(s) with the specified Trade IDs."New value: +"Query string parameter — array of Trade IDs. Returns item(s) with the specified Trade IDs." - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs." - changed
Input schema / properties / filters__without_reference_users / descriptionPrevious value: -"If true, returns only people who are not reference users."New value: +"Query string parameter — if true, returns only people who are not reference users." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Return items with the specified sort"New value: +"Query string parameter — return items with the specified sort" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view of the resource to return (which attributes should be present in the response). Users without read permissions to Directory are limited to the normal and extended views. If a v..."New value: +"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). Users without read permissions to Directory are limited to the normal and extended views. If a v..."
- Changed
list_project_permission_templates3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_project_punch_item_templates6 fields changed- changed
Input schema / properties / filters__active / descriptionPrevious value: -"If true, returns item(s) with a status of 'active'."New value: +"Query string parameter — if true, returns item(s) with a status of 'active'." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) within a specific updated at iso8601 datetime range"New value: +"Query string parameter — return item(s) within a specific updated at iso8601 datetime range" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_project_regions3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_project_roles5 fields changed- changed
Input schema / properties / filters__add_to_project_team / descriptionPrevious value: -"Filter results based on the `add_to_project_team` column. Accepts `true` or `false` to include or exclude items accordingly."New value: +"Query string parameter — filter results based on the `add_to_project_team` column. Accepts `true` or `false` to include or exclude items accordingly." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_project_segment_items11 fields changed- changed
Input schema / properties / include_action_policy / descriptionPrevious value: -"include_action_policy"New value: +"Query string parameter — include_action_policy" - changed
Input schema / properties / include_sub_job_cost_codes / descriptionPrevious value: -"include_sub_job_cost_codes"New value: +"Query string parameter — include_sub_job_cost_codes" - changed
Input schema / properties / legacy_cost_code_id / descriptionPrevious value: -"legacy_cost_code_id"New value: +"Query string parameter — unique identifier of the legacy cost code" - changed
Input schema / properties / legacy_sub_job_id / descriptionPrevious value: -"Used to filter legacy cost codes by sub job. Default will filter by project."New value: +"Query string parameter — used to filter legacy cost codes by sub job. Default will filter by project." - changed
Input schema / properties / only_active_items / descriptionPrevious value: -"only_active_items"New value: +"Query string parameter — the only active items for this Work Breakdown Structure operation" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / segment_id / descriptionPrevious value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment" - changed
Input schema / properties / with_descendant_counts / descriptionPrevious value: -"with_descendant_counts"New value: +"Query string parameter — with_descendant_counts" - changed
Input schema / properties / with_sub_job_cost_codes_count / descriptionPrevious value: -"Used to include the count of cost codes that can be used to create wbs codes for each sub job. ONLY supported by sub jobs."New value: +"Query string parameter — used to include the count of cost codes that can be used to create wbs codes for each sub job. ONLY supported by sub jobs."
- Changed
list_project_stages4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Project ID is required if retrieving a list of project stages for RFI users"New value: +"Query string parameter — project ID is required if retrieving a list of project stages for RFI users"
- Changed
list_project_stages_for_a_company_user5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / scope / descriptionPrevious value: -"The scope to use when getting the filter options for project assignments.\nThe user scope returns only filter options for projects that the user is currently assigned to.\nThe company scope returns a..."New value: +"Query string parameter — the scope to use when getting the filter options for project assignments.\nThe user scope returns only filter options for projects that the user is currently assigned to.\nThe company scope returns a..." - changed
Input schema / properties / user_id / descriptionPrevious value: -"User ID"New value: +"URL path parameter — unique identifier of the user"
- Changed
list_project_state_codes4 fields changed- changed
Input schema / properties / country_code / descriptionPrevious value: -"Code that identifies a country"New value: +"Query string parameter — code that identifies a country" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
list_project_status_snapshots - Removed
list_project_status_snapshots_v2_0 - Changed
list_project_templates3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_project_tools_v1_06 fields changed- changed
Input schema / properties / filters__is_active / descriptionPrevious value: -"Retrieve active or inactive tools."New value: +"Query string parameter — retrieve active or inactive tools." - changed
Input schema / properties / for_mobile / descriptionPrevious value: -"Filters tools that Procore's iOS and Android apps support."New value: +"Query string parameter — filters tools that Procore's iOS and Android apps support." - changed
Input schema / properties / include_configurable_generic_tools / descriptionPrevious value: -"Includes configurable custom tools in the for_mobile view."New value: +"Query string parameter — includes configurable custom tools in the for_mobile view." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_project_tools_v1_0_23 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_project_trades3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_project_types3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_project_types_for_a_company_user5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / scope / descriptionPrevious value: -"The scope to use when getting the filter options for project assignments.\nThe user scope returns only filter options for projects that the user is currently assigned to.\nThe company scope returns a..."New value: +"Query string parameter — the scope to use when getting the filter options for project assignments.\nThe user scope returns only filter options for projects that the user is currently assigned to.\nThe company scope returns a..." - changed
Input schema / properties / user_id / descriptionPrevious value: -"User ID"New value: +"URL path parameter — unique identifier of the user"
- Changed
list_project_users14 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__employee / descriptionPrevious value: -"Returns users whose is_employee attribute matches the parameter."New value: +"Query string parameter — returns users whose is_employee attribute matches the parameter." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Returns users whose id attribute matches the parameter."New value: +"Query string parameter — returns users whose id attribute matches the parameter." - changed
Input schema / properties / filters__origin_id / descriptionPrevious value: -"Origin ID. Returns item(s) with the specified Origin ID."New value: +"Query string parameter — origin ID. Returns item(s) with the specified Origin ID." - changed
Input schema / properties / filters__permission_template / descriptionPrevious value: -"Permission Template ID. Returns item(s) assiociated with the specified Permission Template ID."New value: +"Query string parameter — permission Template ID. Returns item(s) assiociated with the specified Permission Template ID." - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Returns users where the search string matches the user's first name, last name, email address, keywords, job title, or company name"New value: +"Query string parameter — returns users where the search string matches the user's first name, last name, email address, keywords, job title, or company name" - changed
Input schema / properties / filters__trade_id__ / descriptionPrevious value: -"Returns users whose vendor record is associated with the specified trade id(s)."New value: +"Query string parameter — returns users whose vendor record is associated with the specified trade id(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Returns items with the specified sort."New value: +"Query string parameter — returns items with the specified sort." - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view of the resource to return (which attributes should be present in the response). Users without read permissions to Directory are limited to the compact view. Otherwise, the defa..."New value: +"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). Users without read permissions to Directory are limited to the compact view. Otherwise, the defa..."
- Changed
list_project_vendor_insurances5 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor" - changed
Input schema / properties / view / descriptionPrevious value: -"Extended view of data"New value: +"Query string parameter — extended view of data"
- Changed
list_project_vendors13 fields changed- removed
Input schema / properties / filters__abbreviated_name__Removed value: -{ - "description": "Return vendors(s) matching any of the specified abbreviated names in the abbreviated_name filter.", - "items": {}, - "type": "array" -} - changed
Input schema / properties / filters__id__ / descriptionPrevious value: -"Returns vendors with the specified id(s)"New value: +"Query string parameter — returns vendors with the specified id(s)" - changed
Input schema / properties / filters__parent_id__ / descriptionPrevious value: -"Returns vendors with the specified parent id(s)"New value: +"Query string parameter — returns vendors with the specified parent id(s)" - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Return vendors where the search string matches the vendor name, keywords, origin_code, or ABN/EIN number"New value: +"Query string parameter — return vendors where the search string matches the vendor name, keywords, origin_code, or ABN/EIN number" - changed
Input schema / properties / filters__standard_cost_code_id__ / descriptionPrevious value: -"Returns vendors associated with the specified standard cost code id(s)"New value: +"Query string parameter — returns vendors associated with the specified standard cost code id(s)" - changed
Input schema / properties / filters__trade_id__ / descriptionPrevious value: -"Returns vendors associated with the specified trade id(s)"New value: +"Query string parameter — returns vendors associated with the specified trade id(s)" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort." - changed
Input schema / properties / sort / enumPrevious value: -[ - "name", - "main_office_name", - "project_and_bid_counts" -]New value: +[ + "name", + "main_office_name" +] - changed
Input schema / properties / view / descriptionPrevious value: -"The normal view provides what is shown below.\nThe extended view is the same as the normal view but includes children_count, legal_name, parent, and bidding.\nThe default view is normal."New value: +"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). Users without read permissions to Directory are limited to ids_only, name, and minimal views. If..." - changed
Input schema / properties / view / enumPrevious value: -[ - "normal", - "extended" -]New value: +[ + "extended", + "ids_only", + "list", + "name", + "minimal", + "normal" +]
- Removed
list_project_vendors_v1_1 - Changed
list_project_wbs_codes12 fields changed- changed
Input schema / properties / can_select_divisions / descriptionPrevious value: -"If true, will include WBS Codes with division segment items. Default is true."New value: +"Query string parameter — if true, will include WBS Codes with division segment items. Default is true." - changed
Input schema / properties / filters__status__ / descriptionPrevious value: -"Filter results to only return codes with the included statuses. Options are 'active' or 'inactive'. Defaults to returning all results."New value: +"Query string parameter — filter results to only return codes with the included statuses. Options are 'active' or 'inactive'. Defaults to returning all results." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Filter results to only return codes that were updated within the range of the two specified ISO 8601 timestamps separated by the ... delimiter."New value: +"Query string parameter — filter results to only return codes that were updated within the range of the two specified ISO 8601 timestamps separated by the ... delimiter." - changed
Input schema / properties / group_id / descriptionPrevious value: -"Along with 'group_type', groups WBS codes by the specified group type and group ID. Only supported option is a contract ID."New value: +"Query string parameter — along with 'group_type', groups WBS codes by the specified group type and group ID. Only supported option is a contract ID." - changed
Input schema / properties / group_type / descriptionPrevious value: -"Along with 'group_id', groups WBS codes by the specified group type and group ID. Only supported option is 'contract'."New value: +"Query string parameter — along with 'group_id', groups WBS codes by the specified group type and group ID. Only supported option is 'contract'." - changed
Input schema / properties / hide_not_in_group / descriptionPrevious value: -"If true, will hide WBS codes that are not in the specified 'group_type' and 'group_id'. Default is true. If false, WBS codes in the specified group will be returned first followed by WBS codes not ..."New value: +"Query string parameter — if true, will hide WBS codes that are not in the specified 'group_type' and 'group_id'. Default is true. If false, WBS codes in the specified group will be returned first followed by WBS codes not ..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / query / descriptionPrevious value: -"Searches the WBS code and description values and returns results sorted in descending order of relevance to the search query."New value: +"Query string parameter — searches the WBS code and description values and returns results sorted in descending order of relevance to the search query." - changed
Input schema / properties / required_segments / descriptionPrevious value: -"required_segments"New value: +"Query string parameter — the required segments for this Work Breakdown Structure operation" - changed
Input schema / properties / scope / descriptionPrevious value: -"Filter results to only return codes that match the specified WBS scope."New value: +"Query string parameter — filter results to only return codes that match the specified WBS scope."
- Changed
list_project_wbs_patterns3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_project_wbs_segments3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_project_wbs_task_codes7 fields changed- changed
Input schema / properties / filters / descriptionPrevious value: -"Filters for wbs task codes"New value: +"Query string parameter — filters for wbs task codes" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / serializer_view / descriptionPrevious value: -"Controls which Task Code blueprint is used to serialize the data. This defaults to `task_code_entity`, but `id_only` is also valid. Errors may be generated if requesting a serializer view that is n..."New value: +"Query string parameter — controls which Task Code blueprint is used to serialize the data. This defaults to `task_code_entity`, but `id_only` is also valid. Errors may be generated if requesting a serializer view that is n..." - changed
Input schema / properties / type / descriptionPrevious value: -"Type of task codes to return"New value: +"Query string parameter — type of task codes to return" - changed
Input schema / properties / view / descriptionPrevious value: -"Controls which Task Code blueprint is used to serialize the data. This defaults to `task_code_entity`, but `id_only` is also valid. Errors may be generated if requesting a serializer view that is n..."New value: +"Query string parameter — controls which Task Code blueprint is used to serialize the data. This defaults to `task_code_entity`, but `id_only` is also valid. Errors may be generated if requesting a serializer view that is n..."
- Added
list_project_webhooks_deliveries - Removed
list_project_webhooks_deliveries_v2_0 - Added
list_project_webhooks_hooks - Removed
list_project_webhooks_hooks_v2_0 - Added
list_project_webhooks_resources - Removed
list_project_webhooks_resources_v2_0 - Added
list_project_webhooks_triggers - Removed
list_project_webhooks_triggers_v2_0 - Changed
list_projects27 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - added
Input schema / properties / filters__by_bid_typeAdded value: +{ + "description": "Query string parameter — return item(s) with the specified project bid type ID(s).", + "type": "string" +} - added
Input schema / properties / filters__by_departmentAdded value: +{ + "description": "Query string parameter — return item(s) with the specified department ID(s).", + "type": "string" +} - added
Input schema / properties / filters__by_officeAdded value: +{ + "description": "Query string parameter — return item(s) with the specified office ID(s).", + "type": "string" +} - added
Input schema / properties / filters__by_owner_typeAdded value: +{ + "description": "Query string parameter — return item(s) with the specified project owner type ID(s).", + "type": "string" +} - added
Input schema / properties / filters__by_programAdded value: +{ + "description": "Query string parameter — return item(s) with the specified project program ID(s).", + "type": "string" +} - added
Input schema / properties / filters__by_regionAdded value: +{ + "description": "Query string parameter — return item(s) with the specified project region ID(s).", + "type": "string" +} - added
Input schema / properties / filters__by_stageAdded value: +{ + "description": "Query string parameter — return item(s) with the specified project stage ID(s).", + "type": "string" +} - changed
Input schema / properties / filters__by_status / descriptionPrevious value: -"Filters on project status. Must be one of Active, Inactive, or All."New value: +"Query string parameter — filters on project status. Must be one of Active, Inactive, or All." - added
Input schema / properties / filters__by_typeAdded value: +{ + "description": "Query string parameter — return item(s) with the specified project type ID(s).", + "type": "string" +} - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__custom_fields / descriptionPrevious value: -"JSON object returns project with matching custom_field_values"New value: +"Query string parameter — jSON object returns project with matching custom_field_values" - removed
Input schema / properties / filters__from_project_template_idRemoved value: -{ - "description": "Filter projects by the project template ID they were created from. Returns projects that were created from the specified project template.", - "type": "number" -} - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - added
Input schema / properties / filters__is_demoAdded value: +{ + "description": "Query string parameter — filters on project is_demo attribute, which indicates whether project is\nfor demonstration purposes.\n", + "type": "boolean" +} - changed
Input schema / properties / filters__name / descriptionPrevious value: -"Filters projects to those matching the given string."New value: +"Query string parameter — filters projects to those matching the given string." - changed
Input schema / properties / filters__origin_id / descriptionPrevious value: -"Origin ID. Returns item(s) with the specified Origin ID."New value: +"Query string parameter — origin ID. Returns item(s) with the specified Origin ID." - added
Input schema / properties / filters__project_numberAdded value: +{ + "description": "Query string parameter — filters on project number.", + "type": "string" +} - changed
Input schema / properties / filters__synced / descriptionPrevious value: -"If true, returns only item(s) with a `synced` status."New value: +"Query string parameter — if true, returns only item(s) with a `synced` status." - added
Input schema / properties / filters__templateAdded value: +{ + "description": "Query string parameter — filters on project template attribute, which indicates whether project is\na template\n", + "type": "boolean" +} - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Return item(s) with the specified Vendor ID."New value: +"Query string parameter — return item(s) with the specified Vendor ID." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - removed
Input schema / properties / serializer_viewRemoved value: -{ - "description": "The 'compact' view only returns id, name and display_name. Passing any other value (or passing no value at all)\nwill result in the more complete list of attributes shown below.", - "enum": [ - "compact" - ], - "type": "string" -} - changed
Input schema / properties / sort / descriptionPrevious value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort." - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — the view determines which fields are returned. 'ids' return only id as an Integer (it additionally influences 'per_page' value to be strictly 200000), 'compact' returns only id and name, 'normal' r...", + "enum": [ + "ids", + "compact", + "normal", + "extended" + ], + "type": "string" +}
- Removed
list_projects_v1_1 - Changed
list_property_damages7 fields changed- changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__responsible_company_id / descriptionPrevious value: -"Return item(s) with the specified Vendor ID."New value: +"Query string parameter — return item(s) with the specified Vendor ID." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID. When provided, the list will be scoped to only the Property Damages for a given Incident."New value: +"Query string parameter — incident ID. When provided, the list will be scoped to only the Property Damages for a given Incident." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Added
list_punch_item_assignee_company_filter_options - Removed
list_punch_item_assignee_company_filter_options_v2_0 - Added
list_punch_item_assignee_filter_options - Removed
list_punch_item_assignee_filter_options_v2_0 - Added
list_punch_item_ball_in_court_filter_options - Removed
list_punch_item_ball_in_court_filter_options_v2_0 - Added
list_punch_item_closed_by_contact_filter_options - Removed
list_punch_item_closed_by_contact_filter_options_v2_0 - Added
list_punch_item_creator_filter_options - Removed
list_punch_item_creator_filter_options_v2_0 - Changed
list_punch_item_default_distribution_list3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Added
list_punch_item_final_approver_filter_options - Removed
list_punch_item_final_approver_filter_options_v2_0 - Added
list_punch_item_location_filter_options - Removed
list_punch_item_location_filter_options_v2_0 - Added
list_punch_item_manager_filter_options - Removed
list_punch_item_manager_filter_options_v2_0 - Added
list_punch_item_trade_filter_options - Removed
list_punch_item_trade_filter_options_v2_0 - Added
list_punch_item_type_filter_options - Removed
list_punch_item_type_filter_options_v2_0 - Changed
list_punch_item_types5 fields changed- changed
Input schema / properties / filters__name / descriptionPrevious value: -"Filter item(s) with matching name."New value: +"Query string parameter — filter item(s) with matching name." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter"New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter"
- Changed
list_punch_items15 fields changed- changed
Input schema / properties / filters__approver_login_information_id / descriptionPrevious value: -"User ID. Returns item(s) where the specified User ID is an approver."New value: +"Query string parameter — user ID. Returns item(s) where the specified User ID is an approver." - changed
Input schema / properties / filters__assignee_response / descriptionPrevious value: -"If true, returns item(s) with the specified assignee response approved status."New value: +"Query string parameter — if true, returns item(s) with the specified assignee response approved status." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified Punch Item ID."New value: +"Query string parameter — return item(s) with the specified Punch Item ID." - changed
Input schema / properties / filters__include_sublocations / descriptionPrevious value: -"Use together with `filters[location_id]`\n"New value: +"Query string parameter — use together with `filters[location_id]`\n" - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Location ID. Returns item(s) with the specified Location ID or a range of Location IDs."New value: +"Query string parameter — location ID. Returns item(s) with the specified Location ID or a range of Location IDs." - changed
Input schema / properties / filters__priority / descriptionPrevious value: -"Return item(s) with the specified Punch Item Priority - 'low', 'medium', 'high'"New value: +"Query string parameter — return item(s) with the specified Punch Item Priority - 'low', 'medium', 'high'" - changed
Input schema / properties / filters__punch_item_type_id / descriptionPrevious value: -"Return item(s) with the specified Punch Item Type ID."New value: +"Query string parameter — return item(s) with the specified Punch Item Type ID." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Return item(s) with the specified Punch Item Status - 'open' or 'closed'."New value: +"Query string parameter — return item(s) with the specified Punch Item Status - 'open' or 'closed'." - changed
Input schema / properties / filters__trade_id / descriptionPrevious value: -"Trade ID"New value: +"Query string parameter — filter results by trade id" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Return item(s) with the specified Vendor ID."New value: +"Query string parameter — return item(s) with the specified Vendor ID." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Removed
list_punch_items_v1_1 - Changed
list_punch_list_assignee_options4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / query / descriptionPrevious value: -"Return items matching the specified search query. Searches by user name and company name."New value: +"Query string parameter — return items matching the specified search query. Searches by user name and company name."
- Changed
list_punch_list_manager_options4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / query / descriptionPrevious value: -"Return items matching the specified search query. Searches by user name and company name."New value: +"Query string parameter — return items matching the specified search query. Searches by user name and company name."
- Changed
list_punch_list_read_user_options4 fields changed- changed
Input schema / properties / filters__search / descriptionPrevious value: -"filters results by the search query"New value: +"Query string parameter — filters results by the search query" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_purchase_order_contract_detail_line_items6 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__line_item_id / descriptionPrevious value: -"Line Item ID. Returns item(s) with the specified Line Item ID or within a range of Line Item IDs."New value: +"Query string parameter — line Item ID. Returns item(s) with the specified Line Item ID or within a range of Line Item IDs." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / purchase_order_contract_id / descriptionPrevious value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
- Changed
list_purchase_order_contract_line_items10 fields changed- changed
Input schema / properties / filters__cost_code_id / descriptionPrevious value: -"Cost Code ID. Returns item(s) with the specified Cost Code ID or within the specified range of Cost Code IDs."New value: +"Query string parameter — cost Code ID. Returns item(s) with the specified Cost Code ID or within the specified range of Cost Code IDs." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__line_item_type_id / descriptionPrevious value: -"Line Item Type ID. Returns item(s) with the specified Line Item Type ID or range of Line Item Type IDs."New value: +"Query string parameter — line Item Type ID. Returns item(s) with the specified Line Item Type ID or range of Line Item Type IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / purchase_order_contract_id / descriptionPrevious value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view (which attributes) of the resource is going to be present in the response. 'default' view\nwill be rendered by default if the parameter is not provided.\nFor the 'ssov_source_lin..."New value: +"Query string parameter — specifies which view (which attributes) of the resource is going to be present in the response. 'default' view\nwill be rendered by default if the parameter is not provided.\nFor the 'ssov_source_lin..."
- Changed
list_quantity_logs9 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific logs desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter" - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Return item(s) with the specified Location IDs."New value: +"Query string parameter — return item(s) with the specified Location IDs." - changed
Input schema / properties / log_date / descriptionPrevious value: -"Date of specific logs desired in YYYY-MM-DD format"New value: +"Query string parameter — date of specific logs desired in YYYY-MM-DD format" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"
- Changed
list_recent_activity_items3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_recycled_action_plan12 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__deleted_by_id / descriptionPrevious value: -"Return item(s) with a specific Deleted By ID or a range of Deleted By IDs."New value: +"Query string parameter — return item(s) with a specific Deleted By ID or a range of Deleted By IDs." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__include_sublocations / descriptionPrevious value: -"Use together with `filters[location_id]`\n"New value: +"Query string parameter — use together with `filters[location_id]`\n" - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Location ID. Returns item(s) with the specified Location ID or a range of Location IDs."New value: +"Query string parameter — location ID. Returns item(s) with the specified Location ID or a range of Location IDs." - changed
Input schema / properties / filters__manager_id / descriptionPrevious value: -"Return item(s) with a specific Manager ID or a range of Manager ID(s)."New value: +"Query string parameter — return item(s) with a specific Manager ID or a range of Manager ID(s)." - changed
Input schema / properties / filters__plan_type_id / descriptionPrevious value: -"Action Plan Type ID. Returns item(s) with the specified Action Plan Type ID(s)."New value: +"Query string parameter — action Plan Type ID. Returns item(s) with the specified Action Plan Type ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_recycled_action_plan_item_assignees9 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan ID(s)" - changed
Input schema / properties / filters__plan_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Item ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Item ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_recycled_action_plan_items9 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan ID(s)" - changed
Input schema / properties / filters__plan_section_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Section(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Section(s)." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_recycled_action_plan_references9 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan ID(s)" - changed
Input schema / properties / filters__plan_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Item ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Item ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_recycled_action_plan_sections7 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan ID(s)" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_recycled_action_plan_template_approvers6 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return section(s) associated with the specified Action Plan Template ID(s)."New value: +"Query string parameter — return section(s) associated with the specified Action Plan Template ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_recycled_action_plan_template_items8 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template ID."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template ID." - changed
Input schema / properties / filters__plan_template_section_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template Section ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template Section ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_recycled_action_plan_template_receivers6 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return section(s) associated with the specified Action Plan Template ID(s)."New value: +"Query string parameter — return section(s) associated with the specified Action Plan Template ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_recycled_action_plan_template_sections7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return section(s) associated with the specified Action Plan Template ID(s)."New value: +"Query string parameter — return section(s) associated with the specified Action Plan Template ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_recycled_action_plan_test_record_requests10 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan ID(s)" - changed
Input schema / properties / filters__plan_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Item ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Item ID(s)." - changed
Input schema / properties / filters__type / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Test Record Type(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Test Record Type(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_recycled_actions8 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing query"New value: +"Query string parameter — return item(s) containing query" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID. When provided, the list will be scoped to only the Recycled Actions for a given Incident."New value: +"Query string parameter — incident ID. When provided, the list will be scoped to only the Recycled Actions for a given Incident." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Removed
list_recycled_actions_v1_1 - Changed
list_recycled_checklist_inspection_comments7 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__item_id / descriptionPrevious value: -"Array of Checklist Item IDs. Return item(s) associated with the specified Checklist Item IDs."New value: +"Query string parameter — array of Checklist Item IDs. Return item(s) associated with the specified Checklist Item IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Added
list_recycled_checklist_inspection_sections - Removed
list_recycled_checklist_inspection_sections_v1_1 - Changed
list_recycled_checklist_inspections_item_attachments6 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__item_id / descriptionPrevious value: -"Array of Checklist Item IDs. Return item(s) associated with the specified Checklist Item IDs."New value: +"Query string parameter — array of Checklist Item IDs. Return item(s) associated with the specified Checklist Item IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_recycled_checklist_templates3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_recycled_checklists_inspections23 fields changed- changed
Input schema / properties / filters__closed_at / descriptionPrevious value: -"Returns item(s) closed within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) closed within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__closed_by_id / descriptionPrevious value: -"Array of User IDs. Return item(s) closed by the specified User ID."New value: +"Query string parameter — array of User IDs. Return item(s) closed by the specified User ID." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Return item(s) created by the specified User IDs"New value: +"Query string parameter — return item(s) created by the specified User IDs" - changed
Input schema / properties / filters__due_at / descriptionPrevious value: -"Return item(s) due within the specified date range."New value: +"Query string parameter — return item(s) due within the specified date range." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__inspection_date / descriptionPrevious value: -"Return item(s) with inspection date within the specified ISO 8601 date range."New value: +"Query string parameter — return item(s) with inspection date within the specified ISO 8601 date range." - changed
Input schema / properties / filters__inspection_type_id / descriptionPrevious value: -"Array of Inspection Type IDs. Return item(s) associated with the specified Inspection Type IDs."New value: +"Query string parameter — array of Inspection Type IDs. Return item(s) associated with the specified Inspection Type IDs." - changed
Input schema / properties / filters__inspector_id / descriptionPrevious value: -"Array of User IDs. Return item(s) where the specified User IDs are inspectors."New value: +"Query string parameter — array of User IDs. Return item(s) where the specified User IDs are inspectors." - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Location ID. Returns item(s) with the specified Location ID or a range of Location IDs."New value: +"Query string parameter — location ID. Returns item(s) with the specified Location ID or a range of Location IDs." - changed
Input schema / properties / filters__managed_equipment_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID." - changed
Input schema / properties / filters__point_of_contact_id / descriptionPrevious value: -"Array of User IDs. Return item(s) where the specified User IDs are the point of contact."New value: +"Query string parameter — array of User IDs. Return item(s) where the specified User IDs are the point of contact." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__responsible_contractor_id / descriptionPrevious value: -"Array of Vendor IDs. Return item(s) where the specified Vendor IDs are the responsible contractor."New value: +"Query string parameter — array of Vendor IDs. Return item(s) where the specified Vendor IDs are the responsible contractor." - changed
Input schema / properties / filters__spec_section_id / descriptionPrevious value: -"Array of Specification Section IDs. Return item(s) associated to the specified Specification Section IDs."New value: +"Query string parameter — array of Specification Section IDs. Return item(s) associated to the specified Specification Section IDs." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Return item(s) with the specified statuses"New value: +"Query string parameter — return item(s) with the specified statuses" - changed
Input schema / properties / filters__template_id / descriptionPrevious value: -"Array of Checklist Template IDs. Return item(s) associated to the specified Checklist Template IDs."New value: +"Query string parameter — array of Checklist Template IDs. Return item(s) associated to the specified Checklist Template IDs." - changed
Input schema / properties / filters__trade_id / descriptionPrevious value: -"Trade ID"New value: +"Query string parameter — filter results by trade id" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_recycled_company_action_plan_template_items_assignees9 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return section(s) associated with the specified Action Plan Template ID(s)."New value: +"Query string parameter — return section(s) associated with the specified Action Plan Template ID(s)." - changed
Input schema / properties / filters__plan_template_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template Item ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template Item ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_recycled_company_action_plan_template_references9 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template ID."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template ID." - changed
Input schema / properties / filters__plan_template_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template Item ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template Item ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_recycled_company_action_plan_template_test_record_requests10 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return section(s) associated with the specified Action Plan Template ID(s)."New value: +"Query string parameter — return section(s) associated with the specified Action Plan Template ID(s)." - changed
Input schema / properties / filters__plan_template_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template Item ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template Item ID(s)." - changed
Input schema / properties / filters__type / descriptionPrevious value: -"Return item(s) associated with the specified Record Type(s)."New value: +"Query string parameter — return item(s) associated with the specified Record Type(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_recycled_company_action_plan_templates10 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__deleted_at / descriptionPrevious value: -"Returns item(s) deleted within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) deleted within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__deleted_by_id / descriptionPrevious value: -"Return item(s) deleted by the specified User IDs"New value: +"Query string parameter — return item(s) deleted by the specified User IDs" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__type_id / descriptionPrevious value: -"Return item(s) with a specific Action Plan Type ID or a range of Action Plan Type IDs."New value: +"Query string parameter — return item(s) with a specific Action Plan Type ID or a range of Action Plan Type IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Removed
list_recycled_company_action_plan_templates_v1_1 - Changed
list_recycled_company_checklist_templates3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_recycled_company_form_templates6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_recycled_environmentals7 fields changed- changed
Input schema / properties / filters__environmental_type_id / descriptionPrevious value: -"Return item(s) with the specified Environmental Type ID."New value: +"Query string parameter — return item(s) with the specified Environmental Type ID." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID. When provided, the list will be scoped to only the Environmentals for a given Incident."New value: +"Query string parameter — incident ID. When provided, the list will be scoped to only the Environmentals for a given Incident." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_recycled_incidents16 fields changed- changed
Input schema / properties / filters__contributing_behavior_id / descriptionPrevious value: -"Contributing Behavior ID. Returns item(s) with the specified Contributing Behavior ID."New value: +"Query string parameter — contributing Behavior ID. Returns item(s) with the specified Contributing Behavior ID." - changed
Input schema / properties / filters__contributing_condition_id / descriptionPrevious value: -"Contributing Condition ID. Returns item(s) with the specified Contributing Condition ID."New value: +"Query string parameter — contributing Condition ID. Returns item(s) with the specified Contributing Condition ID." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__event_date / descriptionPrevious value: -"Returns item(s) with an event date within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) with an event date within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__hazard_id / descriptionPrevious value: -"Hazard ID. Returns item(s) with the specified Hazard ID."New value: +"Query string parameter — hazard ID. Returns item(s) with the specified Hazard ID." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Return item(s) with the specified Location IDs."New value: +"Query string parameter — return item(s) with the specified Location IDs." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing query. Searchable fields include Incident title, Creator, Witness Statement, Incident Action description, Incident Action Type, Contributing Behavior, Contributing Conditi..."New value: +"Query string parameter — return item(s) containing query. Searchable fields include Incident title, Creator, Witness Statement, Incident Action description, Incident Action Type, Contributing Behavior, Contributing Conditi..." - changed
Input schema / properties / filters__recordable / descriptionPrevious value: -"Return item(s) that are recordable."New value: +"Query string parameter — return item(s) that are recordable." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value." - changed
Input schema / properties / filters__time_unknown / descriptionPrevious value: -"If true, returns item(s) where the time of Incident occurrence is unknown."New value: +"Query string parameter — if true, returns item(s) where the time of Incident occurrence is unknown." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_recycled_injuries17 fields changed- changed
Input schema / properties / filters__affected_body_part / descriptionPrevious value: -"Return item(s) with any of the specified Affected Body Parts."New value: +"Query string parameter — return item(s) with any of the specified Affected Body Parts." - changed
Input schema / properties / filters__affected_company_id / descriptionPrevious value: -"Array of Company IDs. Returns item(s) with the specified affected Company IDs."New value: +"Query string parameter — array of Company IDs. Returns item(s) with the specified affected Company IDs." - changed
Input schema / properties / filters__affected_party_id / descriptionPrevious value: -"Array of Affected Party IDs. Returns item(s) with the specified Affected Party IDs."New value: +"Query string parameter — array of Affected Party IDs. Returns item(s) with the specified Affected Party IDs." - changed
Input schema / properties / filters__affected_person_id / descriptionPrevious value: -"Array of Person IDs. Returns item(s) with the specified affected Person IDs."New value: +"Query string parameter — array of Person IDs. Returns item(s) with the specified affected Person IDs." - changed
Input schema / properties / filters__affliction_type_id / descriptionPrevious value: -"Return item(s) with the specified Affliction Type IDs"New value: +"Query string parameter — return item(s) with the specified Affliction Type IDs" - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__filing_type / descriptionPrevious value: -"Return item(s) with the specified filing types. The `recordable` filing_type filter value is deprecated."New value: +"Query string parameter — return item(s) with the specified filing types. The `recordable` filing_type filter value is deprecated." - changed
Input schema / properties / filters__harm_source_id / descriptionPrevious value: -"Array of Harm Source IDs. Returns item(s) with the specified Harm Source IDs."New value: +"Query string parameter — array of Harm Source IDs. Returns item(s) with the specified Harm Source IDs." - changed
Input schema / properties / filters__managed_equipment_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing query"New value: +"Query string parameter — return item(s) containing query" - changed
Input schema / properties / filters__recordable / descriptionPrevious value: -"Return item(s) that are recordable."New value: +"Query string parameter — return item(s) that are recordable." - changed
Input schema / properties / filters__work_activity_id / descriptionPrevious value: -"Array of Work Activity IDs. Returns item(s) with the specified Work Activity IDs."New value: +"Query string parameter — array of Work Activity IDs. Returns item(s) with the specified Work Activity IDs." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID. When provided, the list will be scoped to only the Recycled Injuries for a given Incident.\n\nNOTE: The afflictions and affected_body_part keys are deprecated. Please disregard and use t..."New value: +"Query string parameter — incident ID. When provided, the list will be scoped to only the Recycled Injuries for a given Incident.\n\nNOTE: The afflictions and affected_body_part keys are deprecated. Please disregard and use t..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_recycled_links3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_recycled_near_misses13 fields changed- changed
Input schema / properties / filters__affected_company_id / descriptionPrevious value: -"Array of Company IDs. Returns item(s) with the specified affected Company IDs."New value: +"Query string parameter — array of Company IDs. Returns item(s) with the specified affected Company IDs." - changed
Input schema / properties / filters__affected_party_id / descriptionPrevious value: -"Array of Affected Party IDs. Returns item(s) with the specified Affected Party IDs."New value: +"Query string parameter — array of Affected Party IDs. Returns item(s) with the specified Affected Party IDs." - changed
Input schema / properties / filters__affected_person_id / descriptionPrevious value: -"Array of Person IDs. Returns item(s) with the specified affected Person IDs."New value: +"Query string parameter — array of Person IDs. Returns item(s) with the specified affected Person IDs." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__harm_source_id / descriptionPrevious value: -"Array of Harm Source IDs. Returns item(s) with the specified Harm Source IDs."New value: +"Query string parameter — array of Harm Source IDs. Returns item(s) with the specified Harm Source IDs." - changed
Input schema / properties / filters__managed_equipment_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing query"New value: +"Query string parameter — return item(s) containing query" - changed
Input schema / properties / filters__work_activity_id / descriptionPrevious value: -"Array of Work Activity IDs. Returns item(s) with the specified Work Activity IDs."New value: +"Query string parameter — array of Work Activity IDs. Returns item(s) with the specified Work Activity IDs." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID. When provided, the list will be scoped to only the Recycled Near Misses for a given Incident."New value: +"Query string parameter — incident ID. When provided, the list will be scoped to only the Recycled Near Misses for a given Incident." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_recycled_observation_items12 fields changed- changed
Input schema / properties / filters__assignee_company_id / descriptionPrevious value: -"Array of Vendor IDs. Returns item(s) where the assignee is associated to the specified Vendor ID."New value: +"Query string parameter — array of Vendor IDs. Returns item(s) where the assignee is associated to the specified Vendor ID." - changed
Input schema / properties / filters__assignee_id / descriptionPrevious value: -"Return item(s) assigned to the specified User ID."New value: +"Query string parameter — return item(s) assigned to the specified User ID." - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Return item(s) with the specified Location IDs."New value: +"Query string parameter — return item(s) with the specified Location IDs." - changed
Input schema / properties / filters__priority / descriptionPrevious value: -"Return item(s) with the specified priorities.\n"New value: +"Query string parameter — return item(s) with the specified priorities.\n" - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Return item(s) with the specified status values. The mapping is as follows:\n```\n 0: Initiated\n 1: Ready For reviewed\n 2: Not Accepted\n 3: Closed\n```"New value: +"Query string parameter — return item(s) with the specified status values. The mapping is as follows:\n```\n 0: Initiated\n 1: Ready For reviewed\n 2: Not Accepted\n 3: Closed\n```" - changed
Input schema / properties / filters__trade_ids / descriptionPrevious value: -"Array of Trade IDs. Returns item(s) with the specified Trade IDs."New value: +"Query string parameter — array of Trade IDs. Returns item(s) with the specified Trade IDs." - changed
Input schema / properties / filters__type_id / descriptionPrevious value: -"Return item(s) with the specified Observation Type ID."New value: +"Query string parameter — return item(s) with the specified Observation Type ID." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_recycled_project_action_plan_template_references9 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_template_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template ID."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template ID." - changed
Input schema / properties / filters__plan_template_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Template Item ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Template Item ID(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_recycled_project_forms6 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_recycled_property_damages7 fields changed- changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__responsible_company_id / descriptionPrevious value: -"Return item(s) with the specified Vendor ID."New value: +"Query string parameter — return item(s) with the specified Vendor ID." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID. When provided, the list will be scoped to only the Property Damages for a given Incident."New value: +"Query string parameter — incident ID. When provided, the list will be scoped to only the Property Damages for a given Incident." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_recycled_rfis4 fields changed- changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_recycled_witness_statements9 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__date_received / descriptionPrevious value: -"Return item(s) within the specified date received date range. This assumes the dates provided are in the project time zone."New value: +"Query string parameter — return item(s) within the specified date received date range. This assumes the dates provided are in the project time zone." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing query"New value: +"Query string parameter — return item(s) containing query" - changed
Input schema / properties / filters__witness_id / descriptionPrevious value: -"Return item(s) with the specified Witness (Party) ID."New value: +"Query string parameter — return item(s) with the specified Witness (Party) ID." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID. When provided, the list will be scoped to only the Recycled Witness Statements for a given Incident."New value: +"Query string parameter — incident ID. When provided, the list will be scoped to only the Recycled Witness Statements for a given Incident." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Removed
list_recycled_witness_statements_v1_1 - Changed
list_recyled_action_plan_test_records11 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__plan_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan ID(s)"New value: +"Query string parameter — return item(s) associated with the specified Action Plan ID(s)" - changed
Input schema / properties / filters__plan_item_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Item ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Item ID(s)." - changed
Input schema / properties / filters__plan_test_record_request_id / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Test Record Request ID(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Test Record Request ID(s)." - changed
Input schema / properties / filters__type / descriptionPrevious value: -"Return item(s) associated with the specified Action Plan Test Record Type(s)."New value: +"Query string parameter — return item(s) associated with the specified Action Plan Test Record Type(s)." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
list_regions_for_a_company_user5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / scope / descriptionPrevious value: -"The scope to use when getting the filter options for project assignments.\nThe user scope returns only filter options for projects that the user is currently assigned to.\nThe company scope returns a..."New value: +"Query string parameter — the scope to use when getting the filter options for project assignments.\nThe user scope returns only filter options for projects that the user is currently assigned to.\nThe company scope returns a..." - changed
Input schema / properties / user_id / descriptionPrevious value: -"User ID"New value: +"URL path parameter — unique identifier of the user"
- Changed
list_requested_changes5 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / task_id / descriptionPrevious value: -"The task for which all requested changes will be retrieved."New value: +"Query string parameter — the task for which all requested changes will be retrieved." - changed
Input schema / properties / view / descriptionPrevious value: -"The `with_task` view includes an additional task data for correspondent requested changes"New value: +"Query string parameter — the `with_task` view includes an additional task data for correspondent requested changes"
- Added
list_requested_changes_for_a_schedule_or_a_task - Removed
list_requested_changes_for_a_schedule_or_a_task_v1_1 - Added
list_requisition_compliance_attachments - Removed
list_requisition_compliance_attachments_v2_0 - Added
list_requisition_compliance_documents - Removed
list_requisition_compliance_documents_v2_0 - Changed
list_requisition_subcontractor_invoice_change_histories4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / requisition_id / descriptionPrevious value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
- Changed
list_requisition_subcontractor_invoice_change_order_items5 fields changed- changed
Input schema / properties / filters__change_order_id / descriptionPrevious value: -"Return item(s) associated to Change Orders with the specified IDs."New value: +"Query string parameter — return item(s) associated to Change Orders with the specified IDs." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / requisition_id / descriptionPrevious value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
- Changed
list_requisition_subcontractor_invoice_contract_detail_items4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / requisition_id / descriptionPrevious value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
- Changed
list_requisition_subcontractor_invoice_contract_items4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / requisition_id / descriptionPrevious value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
- Changed
list_requisitions_subcontractor_invoices_for_project12 fields changed- changed
Input schema / properties / filters__commitment_id / descriptionPrevious value: -"Commitment ID(s). Returns item(s) with the specified Commitment ID(s)."New value: +"Query string parameter — commitment ID(s). Returns item(s) with the specified Commitment ID(s)." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - added
Input schema / properties / filters__is_lastAdded value: +{ + "description": "Query string parameter — setting this to true will return only the last item. Setting this to false will return all the items except the last one.", + "type": "boolean" +} - changed
Input schema / properties / filters__origin_id / descriptionPrevious value: -"Origin ID. Returns item(s) with the specified Origin ID."New value: +"Query string parameter — origin ID. Returns item(s) with the specified Origin ID." - changed
Input schema / properties / filters__period_id / descriptionPrevious value: -"Billing Period ID. Returns item(s) with the specified Billing Period ID."New value: +"Query string parameter — billing Period ID. Returns item(s) with the specified Billing Period ID." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Return item(s) with the specified Requisition (Subcontractor Invoice) status."New value: +"Query string parameter — return item(s) with the specified Requisition (Subcontractor Invoice) status." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — elements per page, default 30" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — specifies which view (which attributes) of the resource is going to be present in the response.", + "enum": [ + "default", + "extended", + "items", + "action_policy" + ], + "type": "string" +}
- Removed
list_requisitions_subcontractor_invoices_for_project_v1_1 - Removed
list_resources - Added
list_resources_project - Added
list_resources_v1_0 - Removed
list_resources_v1_1 - Changed
list_responses5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__corresponding_status / descriptionPrevious value: -"Array of Corresponding Statuses. Return item(s) with the specified Corresponding Statuses - 'yes', 'no', or 'n/a'."New value: +"Query string parameter — array of Corresponding Statuses. Return item(s) with the specified Corresponding Statuses - 'yes', 'no', or 'n/a'." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_responses_for_a_generic_tool_item5 fields changed- changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Unique identifier for the generic tool."New value: +"URL path parameter — unique identifier for the generic tool." - changed
Input schema / properties / generic_tool_item_id / descriptionPrevious value: -"Unique identifier for the generic tool item."New value: +"URL path parameter — unique identifier for the generic tool item." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_responses_in_the_specified_item_response_set6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__corresponding_status / descriptionPrevious value: -"Array of Corresponding Statuses. Return item(s) with the specified Corresponding Statuses - 'yes', 'no', or 'n/a'."New value: +"Query string parameter — array of Corresponding Statuses. Return item(s) with the specified Corresponding Statuses - 'yes', 'no', or 'n/a'." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / response_set_id / descriptionPrevious value: -"The ID of the Response Set"New value: +"URL path parameter — the ID of the Response Set" - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_rfi_default_distribution3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_rfi_replies4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / rfi_id / descriptionPrevious value: -"RFI ID"New value: +"URL path parameter — unique identifier of the rfi"
- Changed
list_rfis19 fields changed- changed
Input schema / properties / filters__assigned_id / descriptionPrevious value: -"Assigned ID"New value: +"Query string parameter — filter results by assigned id" - changed
Input schema / properties / filters__ball_in_court_id / descriptionPrevious value: -"User ID. Return item(s) where the specified User ID is the Ball in Court."New value: +"Query string parameter — user ID. Return item(s) where the specified User ID is the Ball in Court." - changed
Input schema / properties / filters__cost_code_id / descriptionPrevious value: -"Cost Code ID. Returns item(s) with the specified Cost Code ID or within the specified range of Cost Code IDs."New value: +"Query string parameter — cost Code ID. Returns item(s) with the specified Cost Code ID or within the specified range of Cost Code IDs." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Location ID. Returns item(s) with the specified Location ID or a range of Location IDs."New value: +"Query string parameter — location ID. Returns item(s) with the specified Location ID or a range of Location IDs." - changed
Input schema / properties / filters__number / descriptionPrevious value: -"Return item(s) with the specified RFI Number."New value: +"Query string parameter — return item(s) with the specified RFI Number." - changed
Input schema / properties / filters__prefix_stage_id / descriptionPrevious value: -"Return item(s) with the specified RFI Prefix Stage."New value: +"Query string parameter — return item(s) with the specified RFI Prefix Stage." - changed
Input schema / properties / filters__received_from_login_information_id / descriptionPrevious value: -"Received From Login Information ID. Returns item(s) with the specified Received From Login Information ID."New value: +"Query string parameter — received From Login Information ID. Returns item(s) with the specified Received From Login Information ID." - changed
Input schema / properties / filters__responsible_contractor_id / descriptionPrevious value: -"Array of Responsible Contractor IDs. A single Responsible Contractor ID is also accepted."New value: +"Query string parameter — array of Responsible Contractor IDs. A single Responsible Contractor ID is also accepted." - changed
Input schema / properties / filters__rfi_manager_id / descriptionPrevious value: -"Return item(s) with the specified RFI Manager ID."New value: +"Query string parameter — return item(s) with the specified RFI Manager ID." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Return item(s) with the specified RFI Status."New value: +"Query string parameter — return item(s) with the specified RFI Status." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / search / descriptionPrevious value: -"Search for RFIs by subject or number. This parameter will return all RFIs that match the search term."New value: +"Query string parameter — search for RFIs by subject or number. This parameter will return all RFIs that match the search term." - changed
Input schema / properties / sort__attribute / descriptionPrevious value: -"The attribute by which to sort the list of RFIs"New value: +"Query string parameter — the attribute by which to sort the list of RFIs" - changed
Input schema / properties / sort__direction / descriptionPrevious value: -"If passed a sort attribute, determines which direction to sort"New value: +"Query string parameter — if passed a sort attribute, determines which direction to sort"
- Changed
list_rfq_quotes5 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / rfq_id / descriptionPrevious value: -"RFQ ID"New value: +"URL path parameter — unique identifier of the rfq"
- Changed
list_rfq_responses5 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / rfq_id / descriptionPrevious value: -"RFQ ID"New value: +"URL path parameter — unique identifier of the rfq"
- Changed
list_rfqs8 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract" - changed
Input schema / properties / filters__commitment_contract_id / descriptionPrevious value: -"Return item(s) with the specified Commitment Contract ID."New value: +"Query string parameter — return item(s) with the specified Commitment Contract ID." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Returns item(s) with the specified value for RFQ status."New value: +"Query string parameter — returns item(s) with the specified value for RFQ status." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_roles_for_a_company_user4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / user_id / descriptionPrevious value: -"User ID"New value: +"URL path parameter — unique identifier of the user"
- Changed
list_safety_violation_logs8 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific logs desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter" - changed
Input schema / properties / log_date / descriptionPrevious value: -"Date of specific logs desired in YYYY-MM-DD format"New value: +"Query string parameter — date of specific logs desired in YYYY-MM-DD format" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"
- Changed
list_schedule_imports3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_schedule_resources4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__name / descriptionPrevious value: -"Filter item(s) with matching name."New value: +"Query string parameter — filter item(s) with matching name." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Added
list_schedules - Removed
list_schedules_v2_0 - Changed
list_signatures_project3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_signatures_project_v1_03 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
list_specification_areas_for_a_project - Removed
list_specification_areas_for_a_project_v2_1 - Added
list_specification_configurations - Removed
list_specification_configurations_v2_1 - Changed
list_specification_section_divisions_for_a_project3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_specification_section_revisions_for_a_specification5 fields changed- changed
Input schema / properties / all_revisions / descriptionPrevious value: -"By default, only current specification section revisions are returned. Set this parameter to \"true\" to return all specification section revisions."New value: +"Query string parameter — by default, only current specification section revisions are returned. Set this parameter to \"true\" to return all specification section revisions." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / specification_section_division_id / descriptionPrevious value: -"specification_section_division_id"New value: +"Query string parameter — specification_section_division_id"
- Changed
list_specification_section_terms4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / specification_section_ids / descriptionPrevious value: -"Specification Sections to fetch extracted terms for. Limited to 100 sections per call; clients should paginate larger collections."New value: +"Query string parameter — specification Sections to fetch extracted terms for. Limited to 100 sections per call; clients should paginate larger collections."
- Removed
list_specification_section_terms_v1_1 - Changed
list_specification_sections5 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Sorts the specification sections by number Ex. 'sort=number' Use 'sort=-number' to sort in descending order"New value: +"Query string parameter — sorts the specification sections by number Ex. 'sort=number' Use 'sort=-number' to sort in descending order"
- Changed
list_specification_sets3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the project for the new set"New value: +"URL path parameter — the ID of the project for the new set"
- Changed
list_specification_uploads5 fields changed- changed
Input schema / properties / filters__specification_set_id / descriptionPrevious value: -"Return items with the specified set ID."New value: +"Query string parameter — return items with the specified set ID." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Return item(s) with the specified status."New value: +"Query string parameter — return item(s) with the specified status." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the project to upload to"New value: +"URL path parameter — the ID of the project to upload to"
- Changed
list_standard_cost_code_lists3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_standard_cost_codes6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / filters__origin_id / descriptionPrevious value: -"Origin ID. Returns item(s) with the specified Origin ID."New value: +"Query string parameter — origin ID. Returns item(s) with the specified Origin ID." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / standard_cost_code_list_id / descriptionPrevious value: -"Standard Cost Code List ID"New value: +"Query string parameter — standard Cost Code List ID" - changed
Input schema / properties / view / descriptionPrevious value: -"The 'default' view only returns id and standard_cost_code_list_id. The 'compact' view also includes\norigin_id. The 'extended' view includes the more complete list of attributes shown below. The 'ex..."New value: +"Query string parameter — the 'default' view only returns id and standard_cost_code_list_id. The 'compact' view also includes\norigin_id. The 'extended' view includes the more complete list of attributes shown below. The 'ex..."
- Changed
list_status_change_history_for_a_coordination_issue5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The extended view provides what is shown below.\nThe normal view is the same as the extended view but excludes attribute created_by, linked_rfi and linked_observation_item.\nThe compact view returns ..."New value: +"Query string parameter — the extended view provides what is shown below.\nThe normal view is the same as the extended view but excludes attribute created_by, linked_rfi and linked_observation_item.\nThe compact view returns ..."
- Changed
list_status_filter_options5 fields changed- changed
Input schema / properties / filters__bim_file_id / descriptionPrevious value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids" - changed
Input schema / properties / locale / descriptionPrevious value: -"The locale in which you need the link to your translation file. \nEnsure it is one of the procore available locales."New value: +"Query string parameter — the locale in which you need the link to your translation file. \nEnsure it is one of the procore available locales." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_statuses_available_for_a_generic_tool4 fields changed- changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_statuses_for_a_generic_tool4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_sub_jobs3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_submittal_associated_attachments5 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"view for which you are exporting"New value: +"Query string parameter — view for which you are exporting"
- Changed
list_submittal_packages_on_a_project5 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_submittal_responses_project3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_submittal_responses_v1_03 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_submittal_statuses3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_submittal_types3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
list_submittals21 fields changed- changed
Input schema / properties / filters__approved_id / descriptionPrevious value: -"filters[approved_id]"New value: +"Query string parameter — filters[approved_id]" - changed
Input schema / properties / filters__ball_in_court / descriptionPrevious value: -"filters[ball_in_court]"New value: +"Query string parameter — filters[ball_in_court]" - changed
Input schema / properties / filters__date_range / descriptionPrevious value: -"filters[date_range]"New value: +"Query string parameter — filter results by date range" - changed
Input schema / properties / filters__due_by / descriptionPrevious value: -"filters[due_by]"New value: +"Query string parameter — filter results by due by" - changed
Input schema / properties / filters__end_date / descriptionPrevious value: -"filters[end_date]"New value: +"Query string parameter — filter results by end date" - changed
Input schema / properties / filters__include_sublocations / descriptionPrevious value: -"Use together with `filters[location_id]`\n"New value: +"Query string parameter — use together with `filters[location_id]`\n" - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Location ID. Returns item(s) with the specified Location ID or a range of Location IDs."New value: +"Query string parameter — location ID. Returns item(s) with the specified Location ID or a range of Location IDs." - changed
Input schema / properties / filters__only_current_revision / descriptionPrevious value: -"filters[only_current_revision]"New value: +"Query string parameter — filters[only_current_revision]" - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__received_from_id / descriptionPrevious value: -"Received From ID"New value: +"Query string parameter — filter results by received from id" - changed
Input schema / properties / filters__response / descriptionPrevious value: -"filters[response]"New value: +"Query string parameter — filter results by response" - changed
Input schema / properties / filters__responsible_contractor_id / descriptionPrevious value: -"Array of Responsible Contractor IDs. A single Responsible Contractor ID is also accepted."New value: +"Query string parameter — array of Responsible Contractor IDs. A single Responsible Contractor ID is also accepted." - changed
Input schema / properties / filters__spec_division / descriptionPrevious value: -"filters[spec_division]"New value: +"Query string parameter — filters[spec_division]" - changed
Input schema / properties / filters__spec_section_id / descriptionPrevious value: -"filters[spec_section_id]"New value: +"Query string parameter — filters[spec_section_id]" - changed
Input schema / properties / filters__start_date / descriptionPrevious value: -"filters[start_date]"New value: +"Query string parameter — filter results by start date" - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value." - changed
Input schema / properties / filters__submittal_package_id / descriptionPrevious value: -"Array of Submittal Package IDs. Returns item(s) associated with the specified Submittal Package IDs. A single integer value is also accepted."New value: +"Query string parameter — array of Submittal Package IDs. Returns item(s) associated with the specified Submittal Package IDs. A single integer value is also accepted." - changed
Input schema / properties / filters__submittal_type / descriptionPrevious value: -"filters[submittal_type]"New value: +"Query string parameter — filters[submittal_type]" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
list_submittals_on_a_project31 fields changed- changed
Input schema / properties / filters__anticipated_delivery_date / descriptionPrevious value: -"Array of dates (date range). Returns item(s) with their anticipated delivery date within the specified dates. A single date is also accepted. style: form"New value: +"Query string parameter — array of dates (date range). Returns item(s) with their anticipated delivery date within the specified dates. A single date is also accepted. style: form" - changed
Input schema / properties / filters__approver_id / descriptionPrevious value: -"Array of User IDs. Return item(s) where the specified User IDs are in the approver list. A single integer is also accepted."New value: +"Query string parameter — array of User IDs. Return item(s) where the specified User IDs are in the approver list. A single integer is also accepted." - removed
Input schema / properties / filters__attachmentsRemoved value: -{ - "description": "Array of boolean values to filter submittals by \"Attachments\" status.", - "items": {}, - "type": "array" -} - changed
Input schema / properties / filters__ball_in_court_id / descriptionPrevious value: -"User ID. Return item(s) where the specified User ID is the Ball in Court."New value: +"Query string parameter — user ID. Return item(s) where the specified User ID is the Ball in Court." - removed
Input schema / properties / filters__cost_code_idRemoved value: -{ - "description": "Array of Cost Code IDs. A single Cost Code ID is also accepted.", - "items": {}, - "type": "array" -} - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__current_revision / descriptionPrevious value: -"Default false. If true, only current revisions are shown. If false, all submittals are shown, regardless of whether or not it is the current revision."New value: +"Query string parameter — default false. If true, only current revisions are shown. If false, all submittals are shown, regardless of whether or not it is the current revision." - changed
Input schema / properties / filters__division / descriptionPrevious value: -"Array of Divisions to filter on. A Division is the first two digits from the Specification Section Number. A single Division is also accepted."New value: +"Query string parameter — array of Divisions to filter on. A Division is the first two digits from the Specification Section Number. A single Division is also accepted." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__location_id / descriptionPrevious value: -"Array of Location IDs. A single Location ID is also accepted."New value: +"Query string parameter — array of Location IDs. A single Location ID is also accepted." - changed
Input schema / properties / filters__number / descriptionPrevious value: -"Array of Numbers. A single Number is also accepted."New value: +"Query string parameter — array of Numbers. A single Number is also accepted." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__received_from_id / descriptionPrevious value: -"Received From ID"New value: +"Query string parameter — filter results by received from id" - changed
Input schema / properties / filters__required_on_site_date / descriptionPrevious value: -"Array of dates (date range). Returns item(s) with their required on site date withing the specified dates. A single date is also accepted. style: form"New value: +"Query string parameter — array of dates (date range). Returns item(s) with their required on site date withing the specified dates. A single date is also accepted. style: form" - changed
Input schema / properties / filters__response_id / descriptionPrevious value: -"Array of Response IDs. A single Response ID is also accepted."New value: +"Query string parameter — array of Response IDs. A single Response ID is also accepted." - changed
Input schema / properties / filters__responsible_contractor_id / descriptionPrevious value: -"Array of Responsible Contractor IDs. A single Responsible Contractor ID is also accepted."New value: +"Query string parameter — array of Responsible Contractor IDs. A single Responsible Contractor ID is also accepted." - removed
Input schema / properties / filters__revisionRemoved value: -{ - "description": "Array of Submittal Revision values. A single Submittal Revision is also accepted.", - "items": {}, - "type": "array" -} - removed
Input schema / properties / filters__specification_area_idRemoved value: -{ - "description": "Array of specification area IDs to filter submittals by. A single value is also accepted. Use \"NULL\" to filter submittals with no specification area.", - "items": {}, - "type": "array" -} - changed
Input schema / properties / filters__specification_section_id / descriptionPrevious value: -"Array of Specification Section IDs. A single Specification Section ID is also accepted."New value: +"Query string parameter — array of Specification Section IDs. A single Specification Section ID is also accepted." - changed
Input schema / properties / filters__status_id / descriptionPrevious value: -"Array of Status IDs. A single Status ID is also accepted."New value: +"Query string parameter — array of Status IDs. A single Status ID is also accepted." - changed
Input schema / properties / filters__submittal_manager_id / descriptionPrevious value: -"Array of Submittal Manager IDs. A single Submittal Manager ID is also accepted."New value: +"Query string parameter — array of Submittal Manager IDs. A single Submittal Manager ID is also accepted." - changed
Input schema / properties / filters__submittal_package_id / descriptionPrevious value: -"Array of Submittal Package IDs. Returns item(s) associated with the specified Submittal Package IDs. A single integer value is also accepted."New value: +"Query string parameter — array of Submittal Package IDs. Returns item(s) associated with the specified Submittal Package IDs. A single integer value is also accepted." - changed
Input schema / properties / filters__task_id / descriptionPrevious value: -"Array of Submittal Task IDs. Returns item(s) associated with the specified Submittal Task IDs. A single integer value is also accepted."New value: +"Query string parameter — array of Submittal Task IDs. Returns item(s) associated with the specified Submittal Task IDs. A single integer value is also accepted." - changed
Input schema / properties / filters__type / descriptionPrevious value: -"Array of Submittal Types. A single Submittal Type is also accepted."New value: +"Query string parameter — array of Submittal Types. A single Submittal Type is also accepted." - changed
Input schema / properties / filters__unpackaged / descriptionPrevious value: -"Parseable to boolean value, filters out unpackaged Submittals."New value: +"Query string parameter — parseable to boolean value, filters out unpackaged Submittals." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - removed
Input schema / properties / filters__workflow_progressRemoved value: -{ - "description": "Array of strings to filter submittals by \"Workflow Progress\" status. Available options: on_track, off_track, overdue, paused, none", - "items": {}, - "type": "array" -} - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Removed
list_submittals_on_a_project_v1_1 - Changed
list_task_item_categories5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"View to use when generating json. Defaults to normal"New value: +"Query string parameter — view to use when generating json. Defaults to normal"
- Changed
list_task_item_comments6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__task_item_id / descriptionPrevious value: -"Filter by task_item_id to return comments for only that task_item"New value: +"Query string parameter — filter by task_item_id to return comments for only that task_item" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_task_items12 fields changed- changed
Input schema / properties / filters__assigned_id / descriptionPrevious value: -"Assigned ID"New value: +"Query string parameter — filter results by assigned id" - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__due_date / descriptionPrevious value: -"Returns item(s) due within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) due within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value." - changed
Input schema / properties / filters__task_item_category_id / descriptionPrevious value: -"Returns item(s) matching the specified Task Item Category ID."New value: +"Query string parameter — returns item(s) matching the specified Task Item Category ID." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Return item(s) with the specified sort."New value: +"Query string parameter — return item(s) with the specified sort."
- Changed
list_task_items_assignee_options4 fields changed- changed
Input schema / properties / filters__search / descriptionPrevious value: -"Returns item(s) matching the specified search query string."New value: +"Query string parameter — returns item(s) matching the specified search query string." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Added
list_task_items_distribution_member_options - Removed
list_task_items_distribution_member_options_v2_0 - Changed
list_tasks7 fields changed- changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / filters__row_number / descriptionPrevious value: -"Returns Tasks with a row_number matching the given value. This endpoint supports single values of row_number, a range of row_numbers (filters[row_number]=4...7) as well as multiple values (filter..."New value: +"Query string parameter — returns Tasks with a row_number matching the given value. This endpoint supports single values of row_number, a range of row_numbers (filters[row_number]=4...7) as well as multiple values (filter..." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains id, name, key, formatted_name, and task_name.\nThe normal view contains the response shown below.\nThe default view is normal."New value: +"Query string parameter — the compact view contains id, name, key, formatted_name, and task_name.\nThe normal view contains the response shown below.\nThe default view is normal."
- Changed
list_tax_codes3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Expect number of items in response. min: 1, max: 100"New value: +"Query string parameter — expect number of items in response. min: 1, max: 100"
- Changed
list_tax_types3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_time_and_material_timecards3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_timecard_data7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific timecards desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific timecards desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__deleted_at / descriptionPrevious value: -"Returns item(s) deleted within the specified ISO 8601 datetime range."New value: +"Query string parameter — returns item(s) deleted within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific timecards desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific timecards desired in YYYY-MM-DD format (use together with end_date)"
- Changed
list_timecard_entries5 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"The end of the date range for entries. (YYYY-MM-DD); if not provided, this will default to today"New value: +"Query string parameter — the end of the date range for entries. (YYYY-MM-DD); if not provided, this will default to today" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"The beginning of the date range for entries. (YYYY-MM-DD); if not provided, this will default to 1 week ago"New value: +"Query string parameter — the beginning of the date range for entries. (YYYY-MM-DD); if not provided, this will default to 1 week ago"
- Changed
list_timecard_entries_company15 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / end_date / descriptionPrevious value: -"The ending of the date range for entries. (YYYY-MM-DD)"New value: +"Query string parameter — the ending of the date range for entries. (YYYY-MM-DD)" - changed
Input schema / properties / end_time_in / descriptionPrevious value: -"The ending of the time_in range for entries (YYYY-MM-DDTHH:MM:SSZ). \"Z\" represents the timezone offset (i.e. -08:00, -0800). Optionally you may pass the literal \"Z\" which also means \"UTC\"."New value: +"Query string parameter — the ending of the time_in range for entries (YYYY-MM-DDTHH:MM:SSZ). \"Z\" represents the timezone offset (i.e. -08:00, -0800). Optionally you may pass the literal \"Z\" which also means \"UTC\"." - changed
Input schema / properties / filters__deleted_at / descriptionPrevious value: -"Return item(s) that were deleted within the specified ISO 8601 datetime range."New value: +"Query string parameter — return item(s) that were deleted within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__in_progress_only / descriptionPrevious value: -"Return work in progress item(s)."New value: +"Query string parameter — return work in progress item(s)." - changed
Input schema / properties / filters__include_in_progress / descriptionPrevious value: -"Return available and work in progress item(s)."New value: +"Query string parameter — return available and work in progress item(s)." - changed
Input schema / properties / filters__party_id / descriptionPrevious value: -"Return item(s) with the specified Party ID."New value: +"Query string parameter — return item(s) with the specified Party ID." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / serializer_view / descriptionPrevious value: -"Changes what fields are included in the response."New value: +"Query string parameter — changes what fields are included in the response." - changed
Input schema / properties / start_date / descriptionPrevious value: -"The beginning of the date range for entries. (YYYY-MM-DD)"New value: +"Query string parameter — the beginning of the date range for entries. (YYYY-MM-DD)" - changed
Input schema / properties / start_time_in / descriptionPrevious value: -"The beginning of the time_in range for entries (YYYY-MM-DDTHH:MM:SSZ). \"Z\" represents the timezone offset (i.e. -08:00, -0800). Optionally you may pass the literal \"Z\" which also means \"UTC\"."New value: +"Query string parameter — the beginning of the time_in range for entries (YYYY-MM-DDTHH:MM:SSZ). \"Z\" represents the timezone offset (i.e. -08:00, -0800). Optionally you may pass the literal \"Z\" which also means \"UTC\"." - changed
Input schema / properties / use_filter_tz / descriptionPrevious value: -"When passed as \"true\" the timezone from start_time_in or end_time_in will be used for all timestamps in the response. Otherwise they'll use UTC."New value: +"Query string parameter — when passed as \"true\" the timezone from start_time_in or end_time_in will be used for all timestamps in the response. Otherwise they'll use UTC."
- Changed
list_timecard_entries_project8 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"The end of the date range for timecard entries. (YYYY-MM-DD) End date is inclusive."New value: +"Query string parameter — the end of the date range for timecard entries. (YYYY-MM-DD) End date is inclusive." - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter" - changed
Input schema / properties / log_date / descriptionPrevious value: -"Timecard entries at the specified date. (YYYY-MM-DD)"New value: +"Query string parameter — timecard entries at the specified date. (YYYY-MM-DD)" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"The beginning of the date range for timecard entries. (YYYY-MM-DD) Start date is inclusive."New value: +"Query string parameter — the beginning of the date range for timecard entries. (YYYY-MM-DD) Start date is inclusive."
- Changed
list_timecard_time_types_company3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
list_timecard_time_types_v1_03 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Added
list_timeline_events - Removed
list_timeline_events_v2_0 - Added
list_tools_enabled_for_workflows - Removed
list_tools_enabled_for_workflows_v2_0 - Changed
list_trades6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__active / descriptionPrevious value: -"Limit results to available trades"New value: +"Query string parameter — limit results to available trades" - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Query trades by name"New value: +"Query string parameter — query trades by name" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_unit_of_measure_categories3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
list_units_of_measure3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_users_with_access_to_a_generic_tool5 fields changed- changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query" - changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_users_with_access_to_a_generic_tool_item5 fields changed- changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool" - changed
Input schema / properties / generic_tool_item_id / descriptionPrevious value: -"Unique identifier for the Generic Tool Item"New value: +"URL path parameter — unique identifier for the Generic Tool Item" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
list_visitor_logs8 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific logs desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter" - changed
Input schema / properties / log_date / descriptionPrevious value: -"Date of specific logs desired in YYYY-MM-DD format"New value: +"Query string parameter — date of specific logs desired in YYYY-MM-DD format" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"
- Changed
list_waste_logs9 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific logs desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter" - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs." - changed
Input schema / properties / log_date / descriptionPrevious value: -"Date of specific logs desired in YYYY-MM-DD format"New value: +"Query string parameter — date of specific logs desired in YYYY-MM-DD format" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"
- Changed
list_watcher_filter_options5 fields changed- changed
Input schema / properties / filters__bim_file_id / descriptionPrevious value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids" - changed
Input schema / properties / locale / descriptionPrevious value: -"The locale in which you need the link to your translation file. \nEnsure it is one of the procore available locales."New value: +"Query string parameter — the locale in which you need the link to your translation file. \nEnsure it is one of the procore available locales." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Added
list_wbs_attribute_items - Removed
list_wbs_attribute_items_v2_0 - Added
list_wbs_attributes - Removed
list_wbs_attributes_v2_0 - Added
list_wbs_code_ids - Removed
list_wbs_code_ids_v2_0 - Added
list_wbs_codes - Added
list_wbs_codes_filter_options - Removed
list_wbs_codes_filter_options_v2_0 - Added
list_wbs_codes_filters - Removed
list_wbs_codes_filters_v2_0 - Removed
list_wbs_codes_v2_0 - Removed
list_weather_logs - Added
list_weather_logs_project - Added
list_weather_logs_project_v1_0 - Removed
list_weather_logs_v1_1 - Changed
list_webhooks_deliveries8 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the company. You must supply either a company_id or project_id." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Filter on status for \"any\", \"successful\", \"failing\" or \"discarded\""New value: +"Query string parameter — filter on status for \"any\", \"successful\", \"failing\" or \"discarded\"" - changed
Input schema / properties / hook_id / descriptionPrevious value: -"Webhooks Hook ID"New value: +"URL path parameter — unique identifier of the hook" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / page_size / descriptionPrevious value: -"Number of items to return for a page (default: 100)"New value: +"Query string parameter — number of items to return for a page (default: 100)" - changed
Input schema / properties / page_start / descriptionPrevious value: -"The last id of the previous page."New value: +"Query string parameter — the last id of the previous page." - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the project. You must supply either a company_id or project_id."
- Changed
list_webhooks_hooks6 fields changed- changed
Input schema / properties / api_version / descriptionPrevious value: -"API Version"New value: +"Query string parameter — the api version for this Webhooks operation" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the company. You must supply either a company_id or project_id." - changed
Input schema / properties / namespace / descriptionPrevious value: -"Hook namespace to query."New value: +"Query string parameter — hook namespace to query." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the project. You must supply either a company_id or project_id."
- Changed
list_webhooks_resources3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the project. You must supply either a company_id or project_id."
- Changed
list_webhooks_resources_api_versions3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the project. You must supply either a company_id or project_id."
- Changed
list_webhooks_triggers5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the company. You must supply either a company_id or project_id." - changed
Input schema / properties / hook_id / descriptionPrevious value: -"Webhooks Hook ID"New value: +"URL path parameter — unique identifier of the hook" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the project. You must supply either a company_id or project_id."
- Changed
list_witness_statements9 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__date_received / descriptionPrevious value: -"Return item(s) within the specified date received date range. This assumes the dates provided are in the project time zone."New value: +"Query string parameter — return item(s) within the specified date received date range. This assumes the dates provided are in the project time zone." - changed
Input schema / properties / filters__query / descriptionPrevious value: -"Return item(s) containing query"New value: +"Query string parameter — return item(s) containing query" - changed
Input schema / properties / filters__witness_id / descriptionPrevious value: -"Return item(s) with the specified Witness (Party) ID."New value: +"Query string parameter — return item(s) with the specified Witness (Party) ID." - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID. When provided, the list will be scoped to only the Witness Statements for a given Incident."New value: +"Query string parameter — incident ID. When provided, the list will be scoped to only the Witness Statements for a given Incident." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_work_activities7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__active / descriptionPrevious value: -"If true, returns item(s) with a status of 'active'."New value: +"Query string parameter — if true, returns item(s) with a status of 'active'." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / sort / descriptionPrevious value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
- Changed
list_work_logs8 fields changed- changed
Input schema / properties / end_date / descriptionPrevious value: -"End date of specific logs desired in YYYY-MM-DD format (use together with start_date)"New value: +"Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date)" - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs." - changed
Input schema / properties / filters__daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter" - changed
Input schema / properties / log_date / descriptionPrevious value: -"Date of specific logs desired in YYYY-MM-DD format"New value: +"Query string parameter — date of specific logs desired in YYYY-MM-DD format" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"New value: +"Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date)"
- Changed
list_work_order_contract_detail_line_items6 fields changed- changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__line_item_id / descriptionPrevious value: -"Line Item ID. Returns item(s) with the specified Line Item ID or within a range of Line Item IDs."New value: +"Query string parameter — line Item ID. Returns item(s) with the specified Line Item ID or within a range of Line Item IDs." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / work_order_contract_id / descriptionPrevious value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
- Changed
list_work_order_contract_line_items10 fields changed- changed
Input schema / properties / filters__cost_code_id / descriptionPrevious value: -"Cost Code ID. Returns item(s) with the specified Cost Code ID or within the specified range of Cost Code IDs."New value: +"Query string parameter — cost Code ID. Returns item(s) with the specified Cost Code ID or within the specified range of Cost Code IDs." - changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__line_item_type_id / descriptionPrevious value: -"Line Item Type ID. Returns item(s) with the specified Line Item Type ID or range of Line Item Type IDs."New value: +"Query string parameter — line Item Type ID. Returns item(s) with the specified Line Item Type ID or range of Line Item Type IDs." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view (which attributes) of the resource is going to be present in the response. 'default' view\nwill be rendered by default if the parameter is not provided.\nFor the 'ssov_source_lin..."New value: +"Query string parameter — specifies which view (which attributes) of the resource is going to be present in the response. 'default' view\nwill be rendered by default if the parameter is not provided.\nFor the 'ssov_source_lin..." - changed
Input schema / properties / work_order_contract_id / descriptionPrevious value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
- Changed
list_work_order_contracts10 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs." - changed
Input schema / properties / filters__include_deleted / descriptionPrevious value: -"Use 'only' for only deleted resources. Use 'with' for deleted and undeleted resources."New value: +"Query string parameter — use 'only' for only deleted resources. Use 'with' for deleted and undeleted resources." - changed
Input schema / properties / filters__origin_id / descriptionPrevious value: -"Origin ID. Returns item(s) with the specified Origin ID."New value: +"Query string parameter — origin ID. Returns item(s) with the specified Origin ID." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Return item(s) with the specified Work Order Contract status."New value: +"Query string parameter — return item(s) with the specified Work Order Contract status." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies how much information to show for each work order contract. The compact view is returned by default."New value: +"Query string parameter — specifies how much information to show for each work order contract. The compact view is returned by default."
- Changed
list_workflow_activity_histories4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / workflow_instance_id / descriptionPrevious value: -"Workflow Instance ID"New value: +"Query string parameter — workflow Instance ID"
- Changed
list_workflow_instances5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / filters__workflowed_object_id / descriptionPrevious value: -"Return items for a specific workflow object."New value: +"Query string parameter — return items for a specific workflow object." - changed
Input schema / properties / filters__workflowed_object_type / descriptionPrevious value: -"Return items for a specific workflow object type."New value: +"Query string parameter — return items for a specific workflow object type." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Added
list_workflow_instances_company - Removed
list_workflow_instances_company_v2_0 - Added
list_workflow_instances_project - Removed
list_workflow_instances_project_v2_0 - Added
list_workflow_managers_company - Removed
list_workflow_managers_company_v2_0 - Added
list_workflow_managers_project - Removed
list_workflow_managers_project_v2_0 - Changed
list_workflow_permanent_logs_company5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__workflowed_object_id / descriptionPrevious value: -"Filter log(s) with matching workflowed object id"New value: +"Query string parameter — filter log(s) with matching workflowed object id" - changed
Input schema / properties / filters__workflowed_object_type / descriptionPrevious value: -"Filter log(s) with matching workflowed object type"New value: +"Query string parameter — filter log(s) with matching workflowed object type" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
- Changed
list_workflow_permanent_logs_project5 fields changed- changed
Input schema / properties / filters__workflowed_object_id / descriptionPrevious value: -"Filter log(s) with matching workflowed object id"New value: +"Query string parameter — filter log(s) with matching workflowed object id" - changed
Input schema / properties / filters__workflowed_object_type / descriptionPrevious value: -"Filter log(s) with matching workflowed object type"New value: +"Query string parameter — filter log(s) with matching workflowed object type" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
list_workflow_presets_company - Removed
list_workflow_presets_company_v2_0 - Added
list_workflow_presets_project - Removed
list_workflow_presets_project_v2_0 - Added
list_workflow_templates - Removed
list_workflow_templates_v2_0 - Changed
lists_the_app_and_tool_level_permissions_for_the_user7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / item_id / descriptionPrevious value: -"item_id"New value: +"Query string parameter — unique identifier of the item" - changed
Input schema / properties / item_type / descriptionPrevious value: -"item_type"New value: +"Query string parameter — the item type for this Document Markup operation" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"Query string parameter — unique identifier for the Procore project" - changed
Input schema / properties / recycled / descriptionPrevious value: -"recycled"New value: +"Query string parameter — the recycled for this Document Markup operation"
- Changed
make_job_title_available_to_group3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / group_id / descriptionPrevious value: -"UUID of the Group the Job Title is being added to or removed from."New value: +"JSON request body field — uUID of the Group the Job Title is being added to or removed from." - changed
Input schema / properties / job_title_id / descriptionPrevious value: -"Unique identifier for the Job Title."New value: +"URL path parameter — unique identifier for the Job Title."
- Changed
make_tag_from_being_available_to_group3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / group_ids / descriptionPrevious value: -"Array of UUIDs for which Groups this Tag should be available to or removed from, depending on the context. If `globally_accessible` is true, this can be an empty array."New value: +"JSON request body field — array of UUIDs for which Groups this Tag should be available to or removed from, depending on the context. If `globally_accessible` is true, this can be an empty array." - changed
Input schema / properties / tag_id / descriptionPrevious value: -"Unique identifier for the tag."New value: +"URL path parameter — unique identifier for the tag."
- Changed
merges_one_or_more_pdfs_of_a_requisition_into_a_single_pdf4 fields changed- changed
Input schema / properties / files / descriptionPrevious value: -"files"New value: +"JSON request body field — the files for this Commitments operation" - changed
Input schema / properties / polling / descriptionPrevious value: -"Determines if the PDF is emailed or a job URL is returned"New value: +"Query string parameter — determines if the PDF is emailed or a job URL is returned" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / requisition_id / descriptionPrevious value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
- Changed
modify_an_existing_markup14 fields changed- changed
Input schema / properties / applies_to_all / descriptionPrevious value: -"Indicates if the markup applies to all change management items within the holder."New value: +"JSON request body field — indicates if the markup applies to all change management items within the holder." - changed
Input schema / properties / compound / descriptionPrevious value: -"Details of the compound calculations for the markup."New value: +"JSON request body field — details of the compound calculations for the markup." - changed
Input schema / properties / holder_id / descriptionPrevious value: -"ID of the Markup's Holder"New value: +"Query string parameter — iD of the Markup's Holder" - changed
Input schema / properties / holder_type / descriptionPrevious value: -"Type of the Markup's Holder"New value: +"Query string parameter — type of the Markup's Holder" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Markup"New value: +"URL path parameter — unique identifier of the Contracts resource" - changed
Input schema / properties / markup_conditions / descriptionPrevious value: -"Conditions that determine how the markup will be applied to change management items within the holder."New value: +"JSON request body field — conditions that determine how the markup will be applied to change management items within the holder." - changed
Input schema / properties / markup_set / descriptionPrevious value: -"Set of the markup.\n- **Horizontal markup:** Calculates the markup amount on an individual line item.\n- **Vertical markup:** Calculates the markup amount as a subtotal on all line items on a change ..."New value: +"JSON request body field — set of the markup.\n- **Horizontal markup:** Calculates the markup amount on an individual line item.\n- **Vertical markup:** Calculates the markup amount as a subtotal on all line items on a change ..." - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the markup."New value: +"JSON request body field — name of the markup." - changed
Input schema / properties / percentage / descriptionPrevious value: -"Percentage value of the markup. The default precision is 50."New value: +"JSON request body field — percentage value of the markup. The default precision is 50." - changed
Input schema / properties / position / descriptionPrevious value: -"Position of the markup in the markup set of the holder. The default is the next available position, starting at 1."New value: +"JSON request body field — position of the markup in the markup set of the holder. The default is the next available position, starting at 1." - changed
Input schema / properties / prime_line_item_id / descriptionPrevious value: -"Unique identifier for the Prime Contract Line Item associated with the markup. This ensures synchronization between the estimated value (without vertical markup) and the revenue value (with verti..."New value: +"JSON request body field — unique identifier for the Prime Contract Line Item associated with the markup. This ensures synchronization between the estimated value (without vertical markup) and the revenue value (with verti..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the Markup's Project"New value: +"Query string parameter — iD of the Markup's Project" - changed
Input schema / properties / tax_code_ids / descriptionPrevious value: -"List of unique identifiers for tax codes associated with the markup. Applicable only when advanced calculations are enabled."New value: +"JSON request body field — list of unique identifiers for tax codes associated with the markup. Applicable only when advanced calculations are enabled." - changed
Input schema / properties / wbs_code_id / descriptionPrevious value: -"ID of the Wbs Code the Markup percentage will be applied to on a project's budget. Default is ID of the `None` Wbs Code."New value: +"JSON request body field — iD of the Wbs Code the Markup percentage will be applied to on a project's budget. Default is ID of the `None` Wbs Code."
- Changed
modify_markups4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / markups / descriptionPrevious value: -"markups"New value: +"JSON request body field — the markups for this Document Markup operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / viewer_doc_id / descriptionPrevious value: -"viewer_doc_id"New value: +"URL path parameter — unique identifier of the viewer doc"
- Changed
move_action_plan_back_into_draft2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan ID"New value: +"URL path parameter — unique identifier of the Action Plans resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
move_action_plan_into_in_progress2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan ID"New value: +"URL path parameter — unique identifier of the Action Plans resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
move_action_plan_item_within_or_across_sections4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Item ID"New value: +"URL path parameter — unique identifier of the Action Plans resource" - changed
Input schema / properties / next_plan_item_id / descriptionPrevious value: -"ID of the Action Plan Item that will follow the newly moved Item. When moving an Item to the last position of the Section, do not provide this parameter."New value: +"Query string parameter — iD of the Action Plan Item that will follow the newly moved Item. When moving an Item to the last position of the Section, do not provide this parameter." - changed
Input schema / properties / plan_section_id / descriptionPrevious value: -"ID of the Action Plan Section the Item will move within or to"New value: +"Query string parameter — iD of the Action Plan Section the Item will move within or to" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
move_action_plan_section3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Section ID"New value: +"URL path parameter — action Plan Section ID" - changed
Input schema / properties / next_section_id / descriptionPrevious value: -"ID of the Action Plan Section that will follow the newly moved Section. When moving an Action Plan Section to the last position of the Action Plan, do not provide this parameter."New value: +"Query string parameter — iD of the Action Plan Section that will follow the newly moved Section. When moving an Action Plan Section to the last position of the Action Plan, do not provide this parameter." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
move_catalog - Removed
move_catalog_v2_0 - Changed
move_company_action_plan_template_into_in_revision2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Action Plan Template ID"New value: +"URL path parameter — company Action Plan Template ID"
- Removed
move_company_action_plan_template_into_in_revision_v1_1 - Changed
move_company_action_plan_template_into_published2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Action Plan Template ID"New value: +"URL path parameter — company Action Plan Template ID"
- Removed
move_company_action_plan_template_into_published_v1_1 - Added
patch_company_role - Removed
patch_company_role_v2_0 - Added
post_company_role - Removed
post_company_role_v2_0 - Changed
procore_api_call4 fields changed- changed
Input schema / properties / body / descriptionPrevious value: -"Request body for POST/PUT/PATCH requests"New value: +"JSON request body for POST/PUT/PATCH calls" - changed
Input schema / properties / path_params / descriptionPrevious value: -"Path parameter substitutions, e.g. { project_id: '12345' }"New value: +"Substitutions for path placeholders, e.g. { project_id: '12345' }" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page, max 100"New value: +"Items per page (max 100)" - changed
Input schema / properties / query_params / descriptionPrevious value: -"Query parameters. Use __ for nested brackets, e.g. filters__status becomes filters[status]"New value: +"Query parameters. Use double underscores for nested brackets: filters__status becomes filters[status]"
- Changed
procore_discover_endpoints3 fields changed- changed
Input schema / properties / method_filter / descriptionPrevious value: -"Filter by HTTP method"New value: +"Restrict results to a single HTTP method" - changed
Input schema / properties / module / descriptionPrevious value: -"Module within category, e.g. 'RFI', 'Submittals', 'Punch List'"New value: +"Module within the category, e.g. 'RFI', 'Submittals', 'Punch List'" - changed
Input schema / properties / search / descriptionPrevious value: -"Filter endpoints by summary text"New value: +"Substring filter applied to endpoint summary text"
- Changed
procore_get_endpoint_details1 field changed- changed
Input schema / properties / operation_id / descriptionPrevious value: -"The operationId from discover_endpoints, e.g. 'RestV10ProjectsProjectIdRfisGet'"New value: +"The operationId returned by procore_discover_endpoints, e.g. 'RestV10ProjectsProjectIdRfisGet'"
- Changed
procore_set_config2 fields changed- changed
Input schema / properties / key / descriptionPrevious value: -"Config key: 'company_id' or 'project_id'"New value: +"Config key — currently 'company_id' or 'project_id'" - changed
Input schema / properties / value / descriptionPrevious value: -"Config value"New value: +"New value (string; numbers are coerced server-side)"
- Changed
project_folder_and_file_index17 fields changed- changed
Input schema / properties / filters__created_at / descriptionPrevious value: -"Return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..."New value: +"Query string parameter — return item(s) created within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYYY-MM-..." - changed
Input schema / properties / filters__created_by_id / descriptionPrevious value: -"Return item(s) created by the specified User IDs"New value: +"Query string parameter — return item(s) created by the specified User IDs" - changed
Input schema / properties / filters__custom_tag_ids / descriptionPrevious value: -"Return item(s) with specified custom tag IDs"New value: +"Query string parameter — return item(s) with specified custom tag IDs" - changed
Input schema / properties / filters__document_type / descriptionPrevious value: -"Return item(s) that are file or folder"New value: +"Query string parameter — return item(s) that are file or folder" - changed
Input schema / properties / filters__file_type / descriptionPrevious value: -"Return item(s) that have the file extensions"New value: +"Query string parameter — return item(s) that have the file extensions" - changed
Input schema / properties / filters__folder_id / descriptionPrevious value: -"Returns the folder for a given id with all subfolders and subfiles up to a depth of 100. Depths greater than 100 will need multiple queries to get all children."New value: +"Query string parameter — returns the folder for a given id with all subfolders and subfiles up to a depth of 100. Depths greater than 100 will need multiple queries to get all children." - changed
Input schema / properties / filters__folder_id / typePrevious value: -"number"New value: +"string" - changed
Input schema / properties / filters__is_in_recycle_bin / descriptionPrevious value: -"Return item(s) that are in or not in the recycle bin"New value: +"Query string parameter — return item(s) that are in or not in the recycle bin" - changed
Input schema / properties / filters__private / descriptionPrevious value: -"If true, returns only item(s) with a `private` status."New value: +"Query string parameter — if true, returns only item(s) with a `private` status." - changed
Input schema / properties / filters__search / descriptionPrevious value: -"Return item(s) that contain string in document name and file description"New value: +"Query string parameter — returns item(s) matching the specified search query string." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / project_id / typePrevious value: -"number"New value: +"string" - changed
Input schema / properties / sort / descriptionPrevious value: -"Field to sort by. If the field is passed with a - (EX: -updated_at) it is sorted in reverse order"New value: +"Query string parameter — field to sort by. If the field is passed with a - (EX: -updated_at) it is sorted in reverse order" - changed
Input schema / properties / view / descriptionPrevious value: -"Determines how much information to include in the response. `normal` is the default, `extended` provides additional data. The example below shows the `extended` response."New value: +"Query string parameter — determines how much information to include in the response. `normal` is the default, `extended` provides additional data. The example below shows the `extended` response."
- Removed
project_folder_and_file_index_v2_0 - Changed
punch_list_available_final_approvers4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / query / descriptionPrevious value: -"Return items matching the specified search query. Searches by user name and company name."New value: +"Query string parameter — return items matching the specified search query. Searches by user name and company name."
- Changed
reactivate_company_user2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the user"New value: +"URL path parameter — unique identifier of the Directory resource"
- Changed
reactivate_company_vendor3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the vendor"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view of the resource to return (which attributes should be present in the response). The default view is extended."New value: +"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). The default view is extended."
- Changed
reactivate_project_user2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the user"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
reactivate_project_vendor3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the vendor"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The normal view provides what is shown below.\nThe extended view is the same as the normal view but includes children_count, legal_name, parent, and bidding.\nThe default view is normal."New value: +"Query string parameter — the normal view provides what is shown below.\nThe extended view is the same as the normal view but includes children_count, legal_name, parent, and bidding.\nThe default view is normal."
- Changed
recycle_rfi2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"RFI ID"New value: +"URL path parameter — unique identifier of the RFI resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
remove_a_person_from_a_group3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / group_id / descriptionPrevious value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group" - changed
Input schema / properties / person_id / descriptionPrevious value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
- Changed
remove_a_response_from_an_item_response_set3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"The ID of the Response"New value: +"URL path parameter — the ID of the Response" - changed
Input schema / properties / response_set_id / descriptionPrevious value: -"Checklist Item Response Set ID"New value: +"URL path parameter — checklist Item Response Set ID"
- Changed
remove_a_user_from_the_project2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the user"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
remove_alternative_response_set_from_project_checklist_template2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
remove_an_existing_markup4 fields changed- changed
Input schema / properties / holder_id / descriptionPrevious value: -"ID of the Markup's Holder"New value: +"Query string parameter — iD of the Markup's Holder" - changed
Input schema / properties / holder_type / descriptionPrevious value: -"Type of the Markup's Holder"New value: +"Query string parameter — type of the Markup's Holder" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Markup"New value: +"URL path parameter — unique identifier of the Contracts resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the Markup's Project"New value: +"Query string parameter — iD of the Markup's Project"
- Changed
remove_change_order_package_from_a_requisition_subcontractor4 fields changed- changed
Input schema / properties / change_order_package_id / descriptionPrevious value: -"Change Order Package ID"New value: +"Query string parameter — change Order Package ID" - changed
Input schema / properties / commitment_id / descriptionPrevious value: -"Commitment ID"New value: +"Query string parameter — unique identifier of the commitment" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / requisition_id / descriptionPrevious value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
- Changed
remove_checklist_template_alternative_response_set2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
remove_company_checklist_template_alternative_response_set2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Checklist Template ID"New value: +"URL path parameter — company Checklist Template ID"
- Added
remove_current_project_company - Removed
remove_current_project_company_v2_0 - Removed
remove_current_project_company_v2_1 - Added
remove_current_project_project - Removed
remove_current_project_project_v2_0 - Removed
remove_current_project_project_v2_1 - Changed
remove_job_title_from_being_available_to_group3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / group_id / descriptionPrevious value: -"UUID of the Group the Job Title is being added to or removed from."New value: +"JSON request body field — uUID of the Group the Job Title is being added to or removed from." - changed
Input schema / properties / job_title_id / descriptionPrevious value: -"Unique identifier for the Job Title."New value: +"URL path parameter — unique identifier for the Job Title."
- Changed
remove_role_from_project3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project" - changed
Input schema / properties / role_id / descriptionPrevious value: -"Unique identifier for the Role in the Project."New value: +"URL path parameter — unique identifier for the Role in the Project."
- Changed
remove_segment_from_the_project_pattern2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / segment_id / descriptionPrevious value: -"Segment ID"New value: +"JSON request body field — unique identifier of the segment"
- Changed
remove_signature_from_timecard_entry_project2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"The ID of the timecard entry."New value: +"URL path parameter — the ID of the timecard entry." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
remove_tag_availablility_to_group4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / group_id / descriptionPrevious value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group" - changed
Input schema / properties / group_ids / descriptionPrevious value: -"Array of UUIDs for which Groups this Tag should be available to or be removed from depending on context. For adding availability, if globally_accessible is true, this can be an empty array."New value: +"Query string parameter — array of UUIDs for which Groups this Tag should be available to or be removed from depending on context. For adding availability, if globally_accessible is true, this can be an empty array." - changed
Input schema / properties / tag_id / descriptionPrevious value: -"Unique identifier for the tag."New value: +"URL path parameter — unique identifier for the tag."
- Changed
remove_tag_instance_from_person3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / person_id / descriptionPrevious value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person" - changed
Input schema / properties / tag_instance_id / descriptionPrevious value: -"Unique identifier for the tag instance"New value: +"URL path parameter — unique identifier for the tag instance"
- Changed
remove_tag_instance_from_project3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project" - changed
Input schema / properties / tag_instance_id / descriptionPrevious value: -"Unique identifier for the tag instance"New value: +"URL path parameter — unique identifier for the tag instance"
- Changed
remove_values_from_custom_field3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / field_id / descriptionPrevious value: -"UUID of the Custom Field."New value: +"URL path parameter — uUID of the Custom Field." - changed
Input schema / properties / values / descriptionPrevious value: -"List of values to remove from the field."New value: +"JSON request body field — list of values to remove from the field."
- Changed
remove_viewpoint_association_from_issue_rest_v2_0_mm_soft4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / coordination_issue_id / descriptionPrevious value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / viewpoint_id / descriptionPrevious value: -"**MM-backed:** Model Manager viewpoint UUID (`[0-9a-f-]{36}`, case-insensitive). **Legacy:** numeric\n`bim_viewpoints.id` for a join row that has `bim_viewpoint_id` (no `viewpoint_uuid`).\n"New value: +"URL path parameter — **MM-backed:** Model Manager viewpoint UUID (`[0-9a-f-]{36}`, case-insensitive). **Legacy:** numeric\n`bim_viewpoints.id` for a join row that has `bim_viewpoint_id` (no `viewpoint_uuid`).\n"
- Added
reorder_company_role - Removed
reorder_company_role_v2_0 - Added
respond_to_a_workflow_instance_company - Removed
respond_to_a_workflow_instance_company_v2_0 - Added
respond_to_a_workflow_instance_project - Removed
respond_to_a_workflow_instance_project_v2_0 - Added
restart_a_workflow_instance_company - Removed
restart_a_workflow_instance_company_v2_0 - Added
restart_a_workflow_instance_project - Removed
restart_a_workflow_instance_project_v2_0 - Changed
restore_a_recycled_company_checklist_template2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Checklist Template ID"New value: +"URL path parameter — company Checklist Template ID"
- Changed
restore_a_time_and_material_entry2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Time And Material Entry"New value: +"URL path parameter — id of the Time And Material Entry" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
restore_change_event - Removed
restore_change_event_v1_1 - Changed
restore_company_form_template2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Form Template ID"New value: +"URL path parameter — company Form Template ID"
- Changed
restore_coordination_issue_from_recycle_bin2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
restore_deleted_checklist_inspection2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the Inspections resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
restore_deleted_checklist_inspection_v1_1 - Added
restore_equipment_company - Removed
restore_equipment_company_v2_0 - Changed
restore_project_form2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Project Form ID"New value: +"URL path parameter — unique identifier of the Forms resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
restore_recycled_action_plan2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan ID"New value: +"URL path parameter — unique identifier of the Action Plans resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
restore_recycled_checklist_template2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
restore_recycled_checklist_template_v1_1 - Changed
restore_recycled_company_action_plan_template2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Plan ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
- Removed
restore_recycled_company_action_plan_template_v1_1 - Changed
restoring_an_equipment16 fields changed- changed
Input schema / properties / company_visible / descriptionPrevious value: -"Company visible"New value: +"JSON request body field — the company visible for this Field Productivity operation" - changed
Input schema / properties / current_project_id / descriptionPrevious value: -"ID of the project the equipment is currently dispatched to"New value: +"JSON request body field — iD of the project the equipment is currently dispatched to" - changed
Input schema / properties / description / descriptionPrevious value: -"description of the equipment"New value: +"JSON request body field — description of the equipment" - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the equipment"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / identification_number / descriptionPrevious value: -"Identification number of the equipment"New value: +"JSON request body field — identification number of the equipment" - changed
Input schema / properties / managed_equipment_category_id / descriptionPrevious value: -"ID of the equipment category"New value: +"JSON request body field — iD of the equipment category" - changed
Input schema / properties / managed_equipment_make_id / descriptionPrevious value: -"ID of the equipment make"New value: +"JSON request body field — iD of the equipment make" - changed
Input schema / properties / managed_equipment_model_id / descriptionPrevious value: -"ID of the equipment model"New value: +"JSON request body field — iD of the equipment model" - changed
Input schema / properties / managed_equipment_type_id / descriptionPrevious value: -"ID of the equipment type"New value: +"JSON request body field — iD of the equipment type" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the equipment"New value: +"JSON request body field — name of the equipment" - changed
Input schema / properties / ownership / descriptionPrevious value: -"The type of ownership"New value: +"JSON request body field — the type of ownership" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / serial_number / descriptionPrevious value: -"Serial number of the equipment"New value: +"JSON request body field — serial number of the equipment" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Field Productivity operation" - changed
Input schema / properties / upload_uuids / descriptionPrevious value: -"Array of upload uuids"New value: +"JSON request body field — array of upload uuids" - changed
Input schema / properties / year / descriptionPrevious value: -"Year the equipment was manufactured in"New value: +"JSON request body field — year the equipment was manufactured in"
- Added
retrieve_a_line_item_by_id_company - Added
retrieve_a_line_item_by_id_project - Removed
retrieve_a_line_item_by_id_v2_0_company - Removed
retrieve_a_line_item_by_id_v2_0_project - Added
retrieve_a_line_item_group_by_id_company - Added
retrieve_a_line_item_group_by_id_project - Removed
retrieve_a_line_item_group_by_id_v2_0_company - Removed
retrieve_a_line_item_group_by_id_v2_0_project - Changed
retrieve_a_list_of_markups6 fields changed- changed
Input schema / properties / holder_id / descriptionPrevious value: -"ID of the Markup's Holder"New value: +"Query string parameter — iD of the Markup's Holder" - changed
Input schema / properties / holder_type / descriptionPrevious value: -"Type of the Markup's Holder"New value: +"Query string parameter — type of the Markup's Holder" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the Markup's Project"New value: +"Query string parameter — iD of the Markup's Project" - changed
Input schema / properties / view / descriptionPrevious value: -"When set to `with_erp_data`, includes the `prime_line_item_id` field in the response."New value: +"Query string parameter — when set to `with_erp_data`, includes the `prime_line_item_id` field in the response."
- Added
retrieve_a_note_by_id_in_the_project_company - Added
retrieve_a_note_by_id_in_the_project_company_v2_0 - Removed
retrieve_a_note_by_id_in_the_project_v2_0_company - Removed
retrieve_a_note_by_id_in_the_project_v2_0_company_v2_0 - Added
retrieve_a_project_proposal_by_id_company - Added
retrieve_a_project_proposal_by_id_company_v2_0 - Removed
retrieve_a_project_proposal_by_id_v2_0_company - Removed
retrieve_a_project_proposal_by_id_v2_0_company_v2_0 - Added
retrieve_a_single_webhook_for_company - Removed
retrieve_a_single_webhook_for_company_v2_0 - Added
retrieve_a_single_webhook_for_project - Removed
retrieve_a_single_webhook_for_project_v2_0 - Added
retrieve_all_line_item_groups_of_a_proposal_company - Added
retrieve_all_line_item_groups_of_a_proposal_project - Removed
retrieve_all_line_item_groups_of_a_proposal_v2_0_company - Removed
retrieve_all_line_item_groups_of_a_proposal_v2_0_project - Added
retrieve_all_line_items_of_a_proposal_company - Added
retrieve_all_line_items_of_a_proposal_project - Removed
retrieve_all_line_items_of_a_proposal_v2_0_company - Removed
retrieve_all_line_items_of_a_proposal_v2_0_project - Added
retrieve_all_notes_in_the_project_company - Added
retrieve_all_notes_in_the_project_company_v2_0 - Removed
retrieve_all_notes_in_the_project_v2_0_company - Removed
retrieve_all_notes_in_the_project_v2_0_company_v2_0 - Added
retrieve_all_project_proposals_company - Added
retrieve_all_project_proposals_company_v2_0 - Removed
retrieve_all_project_proposals_v2_0_company - Removed
retrieve_all_project_proposals_v2_0_company_v2_0 - Changed
retrieve_details_for_the_markup6 fields changed- changed
Input schema / properties / holder_id / descriptionPrevious value: -"ID of the Markup's Holder"New value: +"Query string parameter — iD of the Markup's Holder" - changed
Input schema / properties / holder_type / descriptionPrevious value: -"Type of the Markup's Holder"New value: +"Query string parameter — type of the Markup's Holder" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Markup"New value: +"URL path parameter — unique identifier of the Contracts resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the Markup's Project"New value: +"Query string parameter — iD of the Markup's Project"
- Changed
retrieve_environmental3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Environmental ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
retrieve_equipment16 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / company_visible / descriptionPrevious value: -"Company visible"New value: +"JSON request body field — the company visible for this Field Productivity operation" - changed
Input schema / properties / current_project_id / descriptionPrevious value: -"ID of the project the equipment is currently dispatched to"New value: +"JSON request body field — iD of the project the equipment is currently dispatched to" - changed
Input schema / properties / description / descriptionPrevious value: -"description of the equipment"New value: +"JSON request body field — description of the equipment" - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Equipment"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / identification_number / descriptionPrevious value: -"Identification number of the equipment"New value: +"JSON request body field — identification number of the equipment" - changed
Input schema / properties / managed_equipment_category_id / descriptionPrevious value: -"ID of the equipment category"New value: +"JSON request body field — iD of the equipment category" - changed
Input schema / properties / managed_equipment_make_id / descriptionPrevious value: -"ID of the equipment make"New value: +"JSON request body field — iD of the equipment make" - changed
Input schema / properties / managed_equipment_model_id / descriptionPrevious value: -"ID of the equipment model"New value: +"JSON request body field — iD of the equipment model" - changed
Input schema / properties / managed_equipment_type_id / descriptionPrevious value: -"ID of the equipment type"New value: +"JSON request body field — iD of the equipment type" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the equipment"New value: +"JSON request body field — name of the equipment" - changed
Input schema / properties / ownership / descriptionPrevious value: -"The type of ownership"New value: +"JSON request body field — the type of ownership" - changed
Input schema / properties / serial_number / descriptionPrevious value: -"Serial number of the equipment"New value: +"JSON request body field — serial number of the equipment" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Field Productivity operation" - changed
Input schema / properties / upload_uuids / descriptionPrevious value: -"Array of upload uuids"New value: +"JSON request body field — array of upload uuids" - changed
Input schema / properties / year / descriptionPrevious value: -"Year the equipment was manufactured in"New value: +"JSON request body field — year the equipment was manufactured in"
- Changed
retrieve_property_damage3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Property Damage ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
retrieve_recycled_action3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
retrieve_recycled_action_v1_1 - Changed
retrieve_recycled_incident2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Incident ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
retrieve_recycled_injury3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Injury ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
retrieve_recycled_link2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Link ID"New value: +"URL path parameter — unique identifier of the Project-Level Configuration resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
retrieve_recycled_near_miss3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Near Miss ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
retrieve_recycled_observation2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Observation ID"New value: +"URL path parameter — unique identifier of the Observations resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
retrieve_recycled_rfi2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"RFI ID"New value: +"URL path parameter — unique identifier of the RFI resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
retrieve_recycled_witness_statement3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Witness Statement ID"New value: +"URL path parameter — witness Statement ID" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
retrieve_recycled_witness_statement_v1_1 - Changed
retrieves_the_status_of_the_asyncronous_job_that_a_bulk_users4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the batch"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
return_a_filter4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"Filter name."New value: +"URL path parameter — filter name." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Added
return_a_list_of_all_submittals - Removed
return_a_list_of_all_submittals_v2_0 - Changed
return_a_pdf_template_config4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"PDF Template Configs ID"New value: +"URL path parameter — pDF Template Configs ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
return_company_schedule_summary17 fields changed- changed
Input schema / properties / after / descriptionPrevious value: -"Beginning of date range to filter by."New value: +"Query string parameter — beginning of date range to filter by." - changed
Input schema / properties / before / descriptionPrevious value: -"End of date range to filter by"New value: +"Query string parameter — end of date range to filter by" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / limit_per_day / descriptionPrevious value: -"Number of results to return per day"New value: +"Query string parameter — number of results to return per day" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / program_ids / descriptionPrevious value: -"Filter by project program IDs"New value: +"Query string parameter — filter by project program IDs" - changed
Input schema / properties / project_department_ids / descriptionPrevious value: -"Filter by project department IDs"New value: +"Query string parameter — filter by project department IDs" - changed
Input schema / properties / project_ids / descriptionPrevious value: -"Filter by project IDs"New value: +"Query string parameter — filter by project IDs" - changed
Input schema / properties / project_office_ids / descriptionPrevious value: -"Filter by project office IDs"New value: +"Query string parameter — filter by project office IDs" - changed
Input schema / properties / project_owner_type_ids / descriptionPrevious value: -"Filter by project owner type IDs"New value: +"Query string parameter — filter by project owner type IDs" - changed
Input schema / properties / project_region_ids / descriptionPrevious value: -"Filter by project region IDs"New value: +"Query string parameter — filter by project region IDs" - changed
Input schema / properties / project_stage_ids / descriptionPrevious value: -"Filter by project stage IDs"New value: +"Query string parameter — filter by project stage IDs" - changed
Input schema / properties / project_type_ids / descriptionPrevious value: -"Filter by project type IDs"New value: +"Query string parameter — filter by project type IDs" - changed
Input schema / properties / resource_ids / descriptionPrevious value: -"Filter by resource IDs"New value: +"Query string parameter — filter by resource IDs" - changed
Input schema / properties / sort_dir / descriptionPrevious value: -"Sort results in ascending or descending order"New value: +"Query string parameter — sort results in ascending or descending order" - changed
Input schema / properties / sort_key / descriptionPrevious value: -"Sort results by a property of projects. Defaults to descending project_event_count."New value: +"Query string parameter — sort results by a property of projects. Defaults to descending project_event_count."
- Changed
returns_avatar_of_the_current_user3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
returns_specific_template4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"The ID of the permission template to be retrieved"New value: +"URL path parameter — the ID of the permission template to be retrieved" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Removed
review_requested_changes - Added
review_requested_changes_project - Added
review_requested_changes_v1_0 - Removed
review_requested_changes_v1_1 - Changed
revoke_a_persons_login2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / person_id / descriptionPrevious value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
- Changed
revoke_token3 fields changed- changed
Input schema / properties / client_id / descriptionPrevious value: -"Client ID"New value: +"JSON request body field — oAuth application client ID from the Procore Developer Portal" - changed
Input schema / properties / client_secret / descriptionPrevious value: -"Client Secret"New value: +"JSON request body field — oAuth application client secret from the Procore Developer Portal" - changed
Input schema / properties / token / descriptionPrevious value: -"Token"New value: +"JSON request body field — oAuth2 access token string to be revoked"
- Added
save_aemp_2_0_telematics_data - Removed
save_aemp_2_0_telematics_data_v2_0 - Removed
save_aemp_2_0_telematics_data_v2_1 - Changed
save_markups4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / markups / descriptionPrevious value: -"markups"New value: +"JSON request body field — the markups for this Document Markup operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / viewer_doc_id / descriptionPrevious value: -"viewer_doc_id"New value: +"URL path parameter — unique identifier of the viewer doc"
- Changed
save_stamp12 fields changed- added
Input schema / properties / background_colorAdded value: +{ + "description": "JSON request body field — the background color for this Document Markup operation", + "type": "string" +} - added
Input schema / properties / background_imageAdded value: +{ + "description": "JSON request body field — the background image for this Document Markup operation", + "type": "string" +} - changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — the unique identifier of the company" - added
Input schema / properties / custom_propertiesAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — the custom properties for this Document Markup operation", + "type": "object" +} - added
Input schema / properties / font_familyAdded value: +{ + "description": "JSON request body field — the font family for this Document Markup operation", + "type": "string" +} - added
Input schema / properties / font_styleAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — the font style for this Document Markup operation", + "type": "object" +} - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — the unique identifier of the project" - removed
Input schema / properties / stampRemoved value: -{ - "description": "stamp", - "type": "string" -} - added
Input schema / properties / textAdded value: +{ + "description": "JSON request body field — the text for this Document Markup operation", + "type": "string" +} - added
Input schema / properties / text_colorAdded value: +{ + "description": "JSON request body field — the text color for this Document Markup operation", + "type": "string" +} - added
Input schema / properties / titleAdded value: +{ + "description": "JSON request body field — the title for this Document Markup operation", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "company_id", - "project_id", - "stamp" -]New value: +[ + "company_id", + "project_id", + "title" +]
- Removed
save_stamp_v2_0 - Added
save_telematics_stats_data - Removed
save_telematics_stats_data_v2_0 - Changed
search_all_equipment_company16 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / filters__company_visible / descriptionPrevious value: -"If true, return item(s) with 'company visible' status."New value: +"Query string parameter — if true, return item(s) with 'company visible' status." - changed
Input schema / properties / filters__current_project_id / descriptionPrevious value: -"Return item(s) with the specified current project ID."New value: +"Query string parameter — return item(s) with the specified current project ID." - changed
Input schema / properties / filters__last_service_date / descriptionPrevious value: -"Return item(s) with a last service date within the specified ISO 8601 datetime range."New value: +"Query string parameter — return item(s) with a last service date within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__managed_equipment_category_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment Category ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment Category ID." - changed
Input schema / properties / filters__managed_equipment_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID." - changed
Input schema / properties / filters__managed_equipment_make_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment Make ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment Make ID." - changed
Input schema / properties / filters__managed_equipment_model_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment Model ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment Model ID." - changed
Input schema / properties / filters__managed_equipment_type_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment Type ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment Type ID." - changed
Input schema / properties / filters__next_service_date / descriptionPrevious value: -"Return item(s) with a next service date within the specified ISO 8601 datetime range."New value: +"Query string parameter — return item(s) with a next service date within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / filters__year / descriptionPrevious value: -"Return item(s) with the specified year."New value: +"Query string parameter — return item(s) with the specified year." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / search_keyword / descriptionPrevious value: -"Search keyword to search Project Managed Equipment."New value: +"Query string parameter — search keyword to search Project Managed Equipment."
- Changed
search_all_equipment_project21 fields changed- changed
Input schema / properties / filters__company_visible / descriptionPrevious value: -"If true, return item(s) with 'company visible' status."New value: +"Query string parameter — if true, return item(s) with 'company visible' status." - changed
Input schema / properties / filters__current_project_id / descriptionPrevious value: -"Return item(s) with the specified current project ID."New value: +"Query string parameter — return item(s) with the specified current project ID." - changed
Input schema / properties / filters__induction_status / descriptionPrevious value: -"Returns item(s) with the specified inudction status."New value: +"Query string parameter — returns item(s) with the specified inudction status." - changed
Input schema / properties / filters__last_service_date / descriptionPrevious value: -"Return item(s) with a last service date within the specified ISO 8601 datetime range."New value: +"Query string parameter — return item(s) with a last service date within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__managed_equipment_category_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment Category ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment Category ID." - changed
Input schema / properties / filters__managed_equipment_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID." - changed
Input schema / properties / filters__managed_equipment_make_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment Make ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment Make ID." - changed
Input schema / properties / filters__managed_equipment_model_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment Model ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment Model ID." - changed
Input schema / properties / filters__managed_equipment_type_id / descriptionPrevious value: -"Return item(s) with the specified Managed Equipment Type ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment Type ID." - changed
Input schema / properties / filters__next_service_date / descriptionPrevious value: -"Return item(s) with a next service date within the specified ISO 8601 datetime range."New value: +"Query string parameter — return item(s) with a next service date within the specified ISO 8601 datetime range." - changed
Input schema / properties / filters__offsite / descriptionPrevious value: -"Offsite Dates. Returns item(s) with the specified range of offsite dates."New value: +"Query string parameter — offsite Dates. Returns item(s) with the specified range of offsite dates." - changed
Input schema / properties / filters__onsite / descriptionPrevious value: -"Onsite Dates. Returns item(s) with the specified range of onsite dates."New value: +"Query string parameter — onsite Dates. Returns item(s) with the specified range of onsite dates." - changed
Input schema / properties / filters__ownership / descriptionPrevious value: -"Returns only item(s) with the specified ownership value. Must be one of Owned, Rented, or Sub."New value: +"Query string parameter — returns only item(s) with the specified ownership value. Must be one of Owned, Rented, or Sub." - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..."New value: +"Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range.\nFormats:\n`YYYY-MM-DD`...`YYYY-MM-DD` - Date\n`YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset\n`YYY..." - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Return item(s) with the specified Vendor ID."New value: +"Query string parameter — return item(s) with the specified Vendor ID." - changed
Input schema / properties / filters__year / descriptionPrevious value: -"Return item(s) with the specified year."New value: +"Query string parameter — return item(s) with the specified year." - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / search_keyword / descriptionPrevious value: -"Search keyword to search Project Managed Equipment."New value: +"Query string parameter — search keyword to search Project Managed Equipment."
- Changed
send_a_response_from_a_generic_tool_item_and_then_update_the5 fields changed- changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool" - changed
Input schema / properties / generic_tool_item / descriptionPrevious value: -"generic_tool_item"New value: +"JSON request body field — the generic tool item for this Custom - Configurable Tools operation" - changed
Input schema / properties / generic_tool_item_id / descriptionPrevious value: -"Unique identifier for the Generic Tool Item"New value: +"URL path parameter — unique identifier for the Generic Tool Item" - changed
Input schema / properties / generic_tool_item_response / descriptionPrevious value: -"generic_tool_item_response"New value: +"JSON request body field — generic_tool_item_response" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
send_all_unsent_punch_item_emails3 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / punch_ids / descriptionPrevious value: -"punch_ids"New value: +"JSON request body field — array of punch identifiers" - changed
Input schema / properties / recipient / descriptionPrevious value: -"Recipient role"New value: +"JSON request body field — recipient role"
- Removed
send_all_unsent_punch_item_emails_v1_1 - Changed
send_checklist_inspection_email7 fields changed- changed
Input schema / properties / bcc_distribution_ids / descriptionPrevious value: -"bcc_distribution_ids"New value: +"JSON request body field — bcc_distribution_ids" - changed
Input schema / properties / body / descriptionPrevious value: -"Email Body"New value: +"JSON request body field — email Body" - changed
Input schema / properties / cc_distribution_ids / descriptionPrevious value: -"cc_distribution_ids"New value: +"JSON request body field — array of cc distribution identifiers" - changed
Input schema / properties / distribution_ids / descriptionPrevious value: -"distribution_ids"New value: +"JSON request body field — array of distribution identifiers" - changed
Input schema / properties / id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the Inspections resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / subject / descriptionPrevious value: -"Email Subject"New value: +"JSON request body field — email Subject"
- Changed
send_email_for_file_sharing7 fields changed- changed
Input schema / properties / bcc_distribution_ids / descriptionPrevious value: -"bcc_distribution_ids"New value: +"JSON request body field — bcc_distribution_ids" - changed
Input schema / properties / body / descriptionPrevious value: -"Email Body"New value: +"JSON request body field — email Body" - changed
Input schema / properties / cc_distribution_ids / descriptionPrevious value: -"cc_distribution_ids"New value: +"JSON request body field — array of cc distribution identifiers" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / distribution_ids / descriptionPrevious value: -"distribution_ids"New value: +"JSON request body field — array of distribution identifiers" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the File"New value: +"URL path parameter — unique identifier of the Documents resource" - changed
Input schema / properties / subject / descriptionPrevious value: -"Email Subject"New value: +"JSON request body field — email Subject"
- Changed
send_email_project7 fields changed- changed
Input schema / properties / bcc_distribution_ids / descriptionPrevious value: -"bcc_distribution_ids"New value: +"JSON request body field — bcc_distribution_ids" - changed
Input schema / properties / body / descriptionPrevious value: -"Body of email"New value: +"JSON request body field — body of email" - changed
Input schema / properties / cc_distribution_ids / descriptionPrevious value: -"cc_distribution_ids"New value: +"JSON request body field — array of cc distribution identifiers" - changed
Input schema / properties / distribution_ids / descriptionPrevious value: -"distribution_ids"New value: +"JSON request body field — array of distribution identifiers" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Specification Section Revision to email"New value: +"URL path parameter — iD of the Specification Section Revision to email" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / subject / descriptionPrevious value: -"Subject of Email"New value: +"JSON request body field — subject of Email"
- Changed
send_email_project_v1_07 fields changed- changed
Input schema / properties / bcc_distribution_ids / descriptionPrevious value: -"bcc_distribution_ids"New value: +"JSON request body field — bcc_distribution_ids" - changed
Input schema / properties / body / descriptionPrevious value: -"Body of email"New value: +"JSON request body field — body of email" - changed
Input schema / properties / cc_distribution_ids / descriptionPrevious value: -"cc_distribution_ids"New value: +"JSON request body field — array of cc distribution identifiers" - changed
Input schema / properties / distribution_ids / descriptionPrevious value: -"distribution_ids"New value: +"JSON request body field — array of distribution identifiers" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Drawing Revision to email"New value: +"URL path parameter — iD of the Drawing Revision to email" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / subject / descriptionPrevious value: -"Subject of Email"New value: +"JSON request body field — subject of Email"
- Changed
send_invite2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the user"New value: +"URL path parameter — unique identifier of the Directory resource"
- Removed
send_invite_v1_1 - Removed
send_invite_v1_2 - Removed
send_invite_v1_3 - Changed
send_observation_item_email7 fields changed- changed
Input schema / properties / bcc_distribution_ids / descriptionPrevious value: -"bcc_distribution_ids"New value: +"JSON request body field — bcc_distribution_ids" - changed
Input schema / properties / body / descriptionPrevious value: -"Email Body"New value: +"JSON request body field — email Body" - changed
Input schema / properties / cc_distribution_ids / descriptionPrevious value: -"cc_distribution_ids"New value: +"JSON request body field — array of cc distribution identifiers" - changed
Input schema / properties / distribution_ids / descriptionPrevious value: -"distribution_ids"New value: +"JSON request body field — array of distribution identifiers" - changed
Input schema / properties / id / descriptionPrevious value: -"Observation Item ID"New value: +"URL path parameter — unique identifier of the Observations resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Project ID"New value: +"Query string parameter — unique identifier for the Procore project" - changed
Input schema / properties / subject / descriptionPrevious value: -"Email Subject"New value: +"JSON request body field — email Subject"
- Changed
send_punch_item_email6 fields changed- changed
Input schema / properties / bcc_distribution_ids / descriptionPrevious value: -"bcc_distribution_ids"New value: +"JSON request body field — bcc_distribution_ids" - changed
Input schema / properties / body / descriptionPrevious value: -"Email Body"New value: +"JSON request body field — email Body" - changed
Input schema / properties / cc_distribution_ids / descriptionPrevious value: -"cc_distribution_ids"New value: +"JSON request body field — array of cc distribution identifiers" - changed
Input schema / properties / distribution_ids / descriptionPrevious value: -"distribution_ids"New value: +"JSON request body field — array of distribution identifiers" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Punch Item"New value: +"URL path parameter — iD of the Punch Item" - changed
Input schema / properties / subject / descriptionPrevious value: -"Email Subject"New value: +"JSON request body field — email Subject"
- Removed
send_punch_item_email_v1_1 - Changed
send_unsent_observation_items1 field changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the Project"New value: +"JSON request body field — unique identifier for the Procore project"
- Changed
send_unsent_punch_items1 field changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the Project"New value: +"JSON request body field — unique identifier for the Procore project"
- Removed
send_unsent_punch_items_v1_1 - Changed
send_unsent_task_items1 field changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
send_urgent_error2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / message / descriptionPrevious value: -"The Error Message"New value: +"JSON request body field — the Error Message"
- Added
set_current_project_company - Removed
set_current_project_company_v2_0 - Added
set_current_project_project - Removed
set_current_project_project_v2_0 - Changed
setup_managed_equipment_taxonomy3 fields changed- changed
Input schema / properties / categories / descriptionPrevious value: -"Names of all Managed Equipment categories specified for Managed Equipment dependent import"New value: +"JSON request body field — names of all Managed Equipment categories specified for Managed Equipment dependent import" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / types / descriptionPrevious value: -"Names of all Managed Equipment types specified for Managed Equipment dependent import"New value: +"JSON request body field — names of all Managed Equipment types specified for Managed Equipment dependent import"
- Changed
show_a_bid_within_a_company4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Bid Management resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_a_bid_within_a_project4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Bid Management resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_a_budgeted_production_quantity4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Budgeted Production Quantity"New value: +"URL path parameter — id of the Budgeted Production Quantity" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_a_commitment_contract4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_a_company_inspection_template_item_evidence_configuration4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / template_item_id / descriptionPrevious value: -"Unique identifier for the inspection template item."New value: +"URL path parameter — unique identifier for the inspection template item."
- Changed
show_a_compliance_document_project5 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"identifier for the a commitment contract"New value: +"URL path parameter — identifier for the a commitment contract" - changed
Input schema / properties / id / descriptionPrevious value: -"identifier for the document"New value: +"URL path parameter — identifier for the document" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_a_compliance_document_project_v1_05 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"identifier for the a commitment contract"New value: +"URL path parameter — identifier for the a commitment contract" - changed
Input schema / properties / id / descriptionPrevious value: -"identifier for the document"New value: +"URL path parameter — identifier for the document" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
show_a_coordination_issue_rest_v2_0 - Removed
show_a_coordination_issue_rest_v2_0_v2_0 - Changed
show_a_crew4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
show_a_inspection_item_signature_request - Removed
show_a_inspection_item_signature_request_v2_0 - Changed
show_a_meeting_template4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Meeting Template ID"New value: +"URL path parameter — unique identifier of the Meetings resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_a_project_inspection_template_item_evidence_configuration5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / template_item_id / descriptionPrevious value: -"Unique identifier for the inspection template item."New value: +"URL path parameter — unique identifier for the inspection template item."
- Changed
show_a_signature_company4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_a_signature_project4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Signature ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_a_signature_project_v1_04 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Signature ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_a_timesheet4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_accident_logs4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Accident log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_action5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_action_plan4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan ID"New value: +"URL path parameter — unique identifier of the Action Plans resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_action_plan_approver_signature4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / plan_approver_id / descriptionPrevious value: -"Action Plan Approver ID"New value: +"URL path parameter — action Plan Approver ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_action_plan_item4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Item ID"New value: +"URL path parameter — unique identifier of the Action Plans resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_action_plan_item_assignee4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Item Assignee ID"New value: +"URL path parameter — action Plan Item Assignee ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_action_plan_item_assignee_signature4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / plan_item_assignee_id / descriptionPrevious value: -"Action Plan Item Assignee ID"New value: +"URL path parameter — action Plan Item Assignee ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_action_plan_receiver_signature4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / plan_receiver_id / descriptionPrevious value: -"Action Plan Receiver ID"New value: +"URL path parameter — action Plan Receiver ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_action_plan_reference4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Reference ID"New value: +"URL path parameter — action Plan Reference ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_action_plan_section5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Section ID"New value: +"URL path parameter — action Plan Section ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view (which attributes) of the Action Plan Section is going to be present in the response.\n- `normal` (default): Returns standard Action Plan Section attributes\n- `extended`: Return..."New value: +"Query string parameter — specifies which view (which attributes) of the Action Plan Section is going to be present in the response.\n- `normal` (default): Returns standard Action Plan Section attributes\n- `extended`: Return..."
- Changed
show_action_plan_template_approver4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Template Approver ID"New value: +"URL path parameter — action Plan Template Approver ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_action_plan_template_receiver4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Template Receiver ID"New value: +"URL path parameter — action Plan Template Receiver ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_action_plan_test_record_request4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Test Record Request ID"New value: +"URL path parameter — test Record Request ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_action_plan_verification_method4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Verification Method ID"New value: +"URL path parameter — action Plan Verification Method ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_actual_production_quantity8 fields changed- changed
Input schema / properties / crew_id / descriptionPrevious value: -"The ID of the crew for the Actual Production Quantity"New value: +"JSON request body field — the ID of the crew for the Actual Production Quantity" - changed
Input schema / properties / description / descriptionPrevious value: -"The description of the Actual Production Quantity"New value: +"JSON request body field — the description of the Actual Production Quantity" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / location_id / descriptionPrevious value: -"The Location ID for the Actual Production Quantity"New value: +"JSON request body field — the Location ID for the Actual Production Quantity" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity / descriptionPrevious value: -"Amount installed"New value: +"JSON request body field — amount installed"
- Changed
show_affliction_type4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Affliction Type ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_all_commitment_change_order_batches10 fields changed- changed
Input schema / properties / filters__change_order_id / descriptionPrevious value: -"Filter results by Change Order ID"New value: +"Query string parameter — filter results by Change Order ID" - changed
Input schema / properties / filters__contract_id / descriptionPrevious value: -"Filter results by Contract ID"New value: +"Query string parameter — filter results by Contract ID" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Filter results by Change Order Batch ID"New value: +"Query string parameter — filter results by Change Order Batch ID" - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Array of Status. Return item(s) with the specified status."New value: +"Query string parameter — array of Status. Return item(s) with the specified status." - changed
Input schema / properties / filters__status__not / descriptionPrevious value: -"Array of Status. Return item(s) that does not have specified status."New value: +"Query string parameter — array of Status. Return item(s) that does not have specified status." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) within a specific updated at iso8601 datetime range"New value: +"Query string parameter — return item(s) within a specific updated at iso8601 datetime range" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
show_all_commitment_change_orders14 fields changed- changed
Input schema / properties / filters__batch_id / descriptionPrevious value: -"Filter results by Change Order Batch ID"New value: +"Query string parameter — filter results by Change Order Batch ID" - changed
Input schema / properties / filters__contract_id / descriptionPrevious value: -"Filter results by Contract ID"New value: +"Query string parameter — filter results by Contract ID" - changed
Input schema / properties / filters__executed / descriptionPrevious value: -"Filter results by executed"New value: +"Query string parameter — filter results by executed" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Filter results by Change Order ID"New value: +"Query string parameter — filter results by Change Order ID" - changed
Input schema / properties / filters__legacy_package_id / descriptionPrevious value: -"Filter results by legacy Change Order Package ID"New value: +"Query string parameter — filter results by legacy Change Order Package ID" - changed
Input schema / properties / filters__signature_required / descriptionPrevious value: -"Filter results by signature_required"New value: +"Query string parameter — filter results by signature_required" - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Filter results by status"New value: +"Query string parameter — filter results by status" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) within a specific updated at iso8601 datetime range"New value: +"Query string parameter — return item(s) within a specific updated at iso8601 datetime range" - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Filter results by Contract Vendor ID"New value: +"Query string parameter — filter results by Contract Vendor ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter." - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies Which view (which attributes) of the resource is going to be present in the response. the extended view includes change events data, while the default view does not."New value: +"Query string parameter — specifies Which view (which attributes) of the resource is going to be present in the response. the extended view includes change events data, while the default view does not."
- Changed
show_all_prime_change_order_batches10 fields changed- changed
Input schema / properties / filters__change_order_id / descriptionPrevious value: -"Filter results by Change Order ID"New value: +"Query string parameter — filter results by Change Order ID" - changed
Input schema / properties / filters__contract_id / descriptionPrevious value: -"Filter results by Contract ID"New value: +"Query string parameter — filter results by Contract ID" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Filter results by Change Order Batch ID"New value: +"Query string parameter — filter results by Change Order Batch ID" - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Array of Status. Return item(s) with the specified status."New value: +"Query string parameter — array of Status. Return item(s) with the specified status." - changed
Input schema / properties / filters__status__not / descriptionPrevious value: -"Array of Status. Return item(s) that does not have specified status."New value: +"Query string parameter — array of Status. Return item(s) that does not have specified status." - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) within a specific updated at iso8601 datetime range"New value: +"Query string parameter — return item(s) within a specific updated at iso8601 datetime range" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."
- Changed
show_all_prime_change_orders14 fields changed- changed
Input schema / properties / filters__batch_id / descriptionPrevious value: -"Filter results by Change Order Batch ID"New value: +"Query string parameter — filter results by Change Order Batch ID" - changed
Input schema / properties / filters__contract_id / descriptionPrevious value: -"Filter results by Contract ID"New value: +"Query string parameter — filter results by Contract ID" - changed
Input schema / properties / filters__executed / descriptionPrevious value: -"Filter results by executed"New value: +"Query string parameter — filter results by executed" - changed
Input schema / properties / filters__id / descriptionPrevious value: -"Filter results by Change Order ID"New value: +"Query string parameter — filter results by Change Order ID" - changed
Input schema / properties / filters__legacy_package_id / descriptionPrevious value: -"Filter results by legacy Change Order Package ID"New value: +"Query string parameter — filter results by legacy Change Order Package ID" - changed
Input schema / properties / filters__signature_required / descriptionPrevious value: -"Filter results by signature_required"New value: +"Query string parameter — filter results by signature_required" - changed
Input schema / properties / filters__status / descriptionPrevious value: -"Filter results by status"New value: +"Query string parameter — filter results by status" - changed
Input schema / properties / filters__updated_at / descriptionPrevious value: -"Return item(s) within a specific updated at iso8601 datetime range"New value: +"Query string parameter — return item(s) within a specific updated at iso8601 datetime range" - changed
Input schema / properties / filters__vendor_id / descriptionPrevious value: -"Filter results by Contract Vendor ID"New value: +"Query string parameter — filter results by Contract Vendor ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / sort / descriptionPrevious value: -"Direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter."New value: +"Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter." - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies Which view (which attributes) of the resource is going to be present in the response. the extended view includes change events data, while the default view does not."New value: +"Query string parameter — specifies Which view (which attributes) of the resource is going to be present in the response. the extended view includes change events data, while the default view does not."
- Changed
show_alternative_response_set4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Alternative Response Set ID"New value: +"URL path parameter — alternative Response Set ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_an_async_job_for_a_company4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / uuid / descriptionPrevious value: -"UUID of the Async Job"New value: +"URL path parameter — uUID of the Async Job"
- Changed
show_an_equipment_category4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the equipment category"New value: +"URL path parameter — iD of the equipment category" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_an_equipment_log4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the log to get"New value: +"URL path parameter — iD of the log to get" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_an_equipment_make4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the equipment make"New value: +"URL path parameter — iD of the equipment make" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_an_equipment_model4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the company to get the models for"New value: +"URL path parameter — iD of the company to get the models for" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_an_equipment_type4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the company to get the types for"New value: +"URL path parameter — iD of the company to get the types for" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_an_individual_managed_equipment_maintenance_log_attachment5 fields changed- changed
Input schema / properties / attachment_id / descriptionPrevious value: -"ID of the managed equipment maintenance log attachment"New value: +"URL path parameter — iD of the managed equipment maintenance log attachment" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the managed equipment maintenance log to get attachments from"New value: +"URL path parameter — iD of the managed equipment maintenance log to get attachments from" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_an_individual_time_and_material_attachment4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the time and material attachment"New value: +"URL path parameter — iD of the time and material attachment" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_an_project_equipment_log4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the company to get the logs for"New value: +"URL path parameter — iD of the company to get the logs for" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_app_configuration4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"App Configuration ID"New value: +"URL path parameter — app Configuration ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_app_installation5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the company. You must supply either a company_id or project_id." - changed
Input schema / properties / id / descriptionPrevious value: -"App installation ID"New value: +"URL path parameter — unique identifier of the App Marketplace resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project. You must supply either a company_id or project_id."New value: +"Query string parameter — unique identifier for the project. You must supply either a company_id or project_id."
- Changed
show_bid_package_company4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Bid Management resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_bid_package_project4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Bid Management resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_bids_within_a_bid_package5 fields changed- changed
Input schema / properties / bid_package_id / descriptionPrevious value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Bid Management resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_billing_period_for_project4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Billing Period ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_bim_file5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"BIM File ID."New value: +"URL path parameter — unique identifier of the BIM resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe normal and extended view contains the response shown below.\nThe default view is normal."New value: +"Query string parameter — the compact view contains only ids.\nThe normal and extended view contains the response shown below.\nThe default view is normal."
- Changed
show_bim_file_extraction4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the BIM resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_bim_geometry_file_bundle5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"BIM Geometry File Bundle ID"New value: +"URL path parameter — bIM Geometry File Bundle ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view contains ids instead of objects for each file object.\nThe default view is normal."New value: +"Query string parameter — the compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view contains ids instead of objects for each file object.\nThe default view is normal."
- Changed
show_bim_level5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"BIM Level ID"New value: +"URL path parameter — unique identifier of the BIM resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view contains 'bim_file_id', 'location_id', and 'created_by_id' instead of embedded objects.\nThe ..."New value: +"Query string parameter — the compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view contains 'bim_file_id', 'location_id', and 'created_by_id' instead of embedded objects.\nThe ..."
- Changed
show_bim_model5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"BIM Model ID"New value: +"URL path parameter — unique identifier of the BIM resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view contains 'current_revision_id' instead of an embedded object 'current_revision'\nThe default ..."New value: +"Query string parameter — the compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view contains 'current_revision_id' instead of an embedded object 'current_revision'\nThe default ..."
- Changed
show_bim_model_revision5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"BIM Model Revision ID"New value: +"URL path parameter — bIM Model Revision ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe normal view does not include the attribute 'published_model', and contains 'bim_gridline_id' instead of object.\nThe extended view contains the response shown..."New value: +"Query string parameter — the compact view contains only ids.\nThe normal view does not include the attribute 'published_model', and contains 'bim_gridline_id' instead of object.\nThe extended view contains the response shown..."
- Changed
show_bim_model_revision_plan5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"BIM Model Revision Plan ID"New value: +"URL path parameter — bIM Model Revision Plan ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view contains 'bim_plan_id' and 'bim_level_id' instead of objects.\nThe default view is normal."New value: +"Query string parameter — the compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view contains 'bim_plan_id' and 'bim_level_id' instead of objects.\nThe default view is normal."
- Changed
show_bim_plan5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"BIM Plan ID"New value: +"URL path parameter — unique identifier of the BIM resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view does not contain the attributes 'image', 'sheet_map_start', 'sheet_map_end', 'model_map_star..."New value: +"Query string parameter — the compact view contains only ids.\nThe extended view contains the response shown below.\nThe normal view does not contain the attributes 'image', 'sheet_map_start', 'sheet_map_end', 'model_map_star..."
- Changed
show_bim_viewpoint4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the BIM resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_budget_line_item4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Budget resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Removed
show_budget_line_item_v1_1 - Changed
show_budget_meta_data3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_budget_modification4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Budget resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_calendar_item4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Calendar Item ID"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_call_logs4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Call log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_change_event5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Change Events resource" - added
Input schema / properties / include_deleted_change_event_line_itemsAdded value: +{ + "description": "Query string parameter — used to include deleted Change Event Line Items in the response. Presence of the key includes the deleted items.", + "type": "boolean" +} - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Removed
show_change_event_v1_1 - Changed
show_change_history4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_change_order_package5 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Change Orders resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_change_order_request5 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Change Orders resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_checklist4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the Inspections resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_checklist_comment5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Comment ID"New value: +"URL path parameter — unique identifier of the Inspections resource" - changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_checklist_inspection4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the Inspections resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_checklist_item6 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Item ID"New value: +"URL path parameter — unique identifier of the Inspections resource" - changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / section_id / descriptionPrevious value: -"Checklist Section ID"New value: +"Query string parameter — checklist Section ID"
- Changed
show_checklist_item_response4 fields changed- changed
Input schema / properties / item_id / descriptionPrevious value: -"Checklist Item ID"New value: +"URL path parameter — unique identifier of the item" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_checklist_item_type5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Item Type ID"New value: +"URL path parameter — unique identifier of the Inspections resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_checklist_schedule4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist Schedule ID"New value: +"URL path parameter — checklist Schedule ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_checklist_section5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist Section ID"New value: +"URL path parameter — checklist Section ID" - changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_checklist_signature_request5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Signature Request ID"New value: +"URL path parameter — signature Request ID" - changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_checklist_template4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_classification_company4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Company Settings resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_classification_project4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Company Settings resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_commitment_change_order5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Commitment Change Order"New value: +"URL path parameter — iD of the Commitment Change Order" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies Which view (which attributes) of the resource is going to be present in the response. the extended view includes change events data, while the default view does not."New value: +"Query string parameter — specifies Which view (which attributes) of the resource is going to be present in the response. the extended view includes change events data, while the default view does not."
- Changed
show_commitment_change_order_batch4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Commitment Change Order Batch"New value: +"URL path parameter — iD of the Commitment Change Order Batch" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
show_commitment_change_order_line_item - Removed
show_commitment_change_order_line_item_v2_0 - Added
show_commitment_contract - Added
show_commitment_contract_line_item - Removed
show_commitment_contract_line_item_v2_0 - Added
show_commitment_contract_summary - Removed
show_commitment_contract_summary_v2_0 - Removed
show_commitment_contract_v2_0 - Changed
show_communication4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Communication ID"New value: +"URL path parameter — unique identifier of the Emails resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_communication_thread5 fields changed- changed
Input schema / properties / communication_id / descriptionPrevious value: -"Communication ID"New value: +"URL path parameter — unique identifier of the communication" - changed
Input schema / properties / id / descriptionPrevious value: -"Communication Thread ID"New value: +"URL path parameter — communication Thread ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_company_action_plan_template4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Action Plan Template ID"New value: +"URL path parameter — company Action Plan Template ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_company_action_plan_template_item_assignee4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Assignee ID"New value: +"URL path parameter — unique identifier of the Action Plans resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_company_action_plan_template_reference4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Reference ID"New value: +"URL path parameter — unique identifier of the Action Plans resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_company_action_plan_template_test_record_request4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Action Plan Template Test Record Request ID"New value: +"URL path parameter — company Action Plan Template Test Record Request ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Removed
show_company_action_plan_template_v1_1 - Changed
show_company_action_plan_type4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Action Plan Type ID"New value: +"URL path parameter — company Action Plan Type ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_company_checklist_section4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Checklist Section ID"New value: +"URL path parameter — company Checklist Section ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_company_checklist_template4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Checklist Template ID"New value: +"URL path parameter — company Checklist Template ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_company_configuration3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_company_file5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the File"New value: +"URL path parameter — unique identifier of the Documents resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / show_latest_version_only / descriptionPrevious value: -"Show only latest File Version"New value: +"Query string parameter — show only latest File Version"
- Changed
show_company_file_version4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the file version"New value: +"URL path parameter — iD of the file version" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_company_folder6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / exclude_files / descriptionPrevious value: -"Exclude children Files from results"New value: +"Query string parameter — exclude children Files from results" - changed
Input schema / properties / exclude_folders / descriptionPrevious value: -"Exclude children Folders from results"New value: +"Query string parameter — exclude children Folders from results" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Folder"New value: +"URL path parameter — unique identifier of the Documents resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_company_form_template4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Form Template ID"New value: +"URL path parameter — company Form Template ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_company_form_template_from_project4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Company Form Template ID"New value: +"URL path parameter — company Form Template ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_company_inspection_template_item5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Inspection Template Item ID"New value: +"URL path parameter — company Inspection Template Item ID" - changed
Input schema / properties / inspection_template_id / descriptionPrevious value: -"The ID of the Company Inspection Template"New value: +"URL path parameter — the ID of the Company Inspection Template" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_company_inspection_template_item_reference5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"The ID of the Company Inspection Template Item Reference"New value: +"URL path parameter — the ID of the Company Inspection Template Item Reference" - changed
Input schema / properties / inspection_template_id / descriptionPrevious value: -"The ID of the Company Inspection Template"New value: +"URL path parameter — the ID of the Company Inspection Template" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_company_insurance4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_company_level_email_communication4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Communication ID"New value: +"URL path parameter — unique identifier of the Emails resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_company_office5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the office"New value: +"URL path parameter — unique identifier of the Company Settings resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / view / descriptionPrevious value: -"Response schema to use"New value: +"Query string parameter — response schema to use"
- Added
show_company_security_settings - Removed
show_company_security_settings_v2_0 - Changed
show_company_segment_item6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Segment Item ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / segment_id / descriptionPrevious value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment" - changed
Input schema / properties / standard_cost_code_list_id / descriptionPrevious value: -"Standard Cost Code List ID (required for cost codes only)"New value: +"Query string parameter — standard Cost Code List ID (required for cost codes only)"
- Changed
show_company_upload4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / uuid / descriptionPrevious value: -"Upload UUID"New value: +"URL path parameter — upload UUID"
- Removed
show_company_upload_v1_1 - Removed
show_company_user_v1_0 - Removed
show_company_user_v1_0_2 - Removed
show_company_user_v1_1 - Removed
show_company_user_v1_1_1 - Removed
show_company_user_v1_2 - Changed
show_company_user_v1_35 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the user"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / requiredPrevious value: -[ - "id", - "company_id" -]New value: +[ + "company_id", + "id" +]
- Removed
show_company_user_v1_3_1 - Added
show_company_user_v1_3_2 - Changed
show_company_vendor5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the vendor"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view of the resource to return (which attributes should be present in the response). The default view is extended."New value: +"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). The default view is extended."
- Changed
show_company_vendor_insurance5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
- Changed
show_company_wbs_segment5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / segment_item_list_id / descriptionPrevious value: -"Segment Item List ID"New value: +"Query string parameter — segment Item List ID"
- Changed
show_compliance_documents_for_a_contract_project4 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"identifier for the a commitment contract"New value: +"URL path parameter — identifier for the a commitment contract" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_compliance_documents_for_a_contract_project_v1_04 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"identifier for the a commitment contract"New value: +"URL path parameter — identifier for the a commitment contract" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_compliance_information_for_a_purchase_order_contract4 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"identifier for the work order contract"New value: +"URL path parameter — identifier for the work order contract" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_compliance_information_for_a_work_order_contract4 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"identifier for the work order contract"New value: +"URL path parameter — identifier for the work order contract" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_configurable_field_set4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Configurable Field Set ID"New value: +"URL path parameter — configurable Field Set ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_contract_payment5 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"ID of the Contract"New value: +"Query string parameter — unique identifier of the contract" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_contributing_behavior4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Contributing Behavior ID"New value: +"URL path parameter — contributing Behavior ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_contributing_condition4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Contributing Condition ID"New value: +"URL path parameter — contributing Condition ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_coordination_issue6 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe normal view is a subset of the response shown below, and does not include attachments, viewpoints, linked items and updated_by\nThe extended view contains the..."New value: +"Query string parameter — the compact view contains only ids.\nThe normal view is a subset of the response shown below, and does not include attachments, viewpoints, linked items and updated_by\nThe extended view contains the..." - changed
Input schema / properties / viewpoint_format / descriptionPrevious value: -"Specify viewpoint data format. This parameter functions only when the query parameter view is 'extended'\nThe default format returns the viewpoint content as saved.\nThe procore format returns the vi..."New value: +"Query string parameter — specify viewpoint data format. This parameter functions only when the query parameter view is 'extended'\nThe default format returns the viewpoint content as saved.\nThe procore format returns the vi..."
- Changed
show_coordination_issue_count_by_status3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_coordination_issue_in_recycle_bin5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The compact view contains only ids.\nThe normal view is a subset of the response shown below, and does not include attachments, viewpoints, linked items and updated_by\nThe extended view contains the..."New value: +"Query string parameter — the compact view contains only ids.\nThe normal view is a subset of the response shown below, and does not include attachments, viewpoints, linked items and updated_by\nThe extended view contains the..."
- Added
show_coordination_issue_workflow_issue - Removed
show_coordination_issue_workflow_issue_v2_0 - Changed
show_correspondence_company5 fields changed- changed
Input schema / properties / bid_package_id / descriptionPrevious value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Correspondence ID"New value: +"URL path parameter — unique identifier of the Bid Management resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_correspondence_project5 fields changed- changed
Input schema / properties / bid_package_id / descriptionPrevious value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package" - changed
Input schema / properties / id / descriptionPrevious value: -"Correspondence ID"New value: +"URL path parameter — unique identifier of the Bid Management resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_cost_code5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier for the Cost Code"New value: +"URL path parameter — unique identifier for the Cost Code" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / sub_job_id / descriptionPrevious value: -"Unique identifier for the Sub Job"New value: +"Query string parameter — unique identifier for the Sub Job"
- Changed
show_current_company_user3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Removed
show_current_company_user_v1_1 - Removed
show_current_company_user_v1_2 - Removed
show_current_company_user_v1_3 - Changed
show_custom_field_definition6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Custom Field Definition ID"New value: +"URL path parameter — custom Field Definition ID" - changed
Input schema / properties / includes_configurable_field_sets_count / descriptionPrevious value: -"If true, response will include the number of field sets using item (custom field)."New value: +"Query string parameter — if true, response will include the number of field sets using item (custom field)." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / view / descriptionPrevious value: -"The extended view provides what is shown below.\nThe default view returns the same as the extended view but excludes the attribute custom_field_lov_entries.\nThe with_lov_entries view is the same as ..."New value: +"Query string parameter — the extended view provides what is shown below.\nThe default view returns the same as the extended view but excludes the attribute custom_field_lov_entries.\nThe with_lov_entries view is the same as ..."
- Changed
show_custom_field_lov_entry5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / custom_field_definition_id / descriptionPrevious value: -"Unique identifier for the Custom Field Definition."New value: +"URL path parameter — unique identifier for the Custom Field Definition." - changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier for the Custom Field List of Values (LOV) Entry."New value: +"URL path parameter — unique identifier for the Custom Field List of Values (LOV) Entry." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_custom_field_metadatum5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Custom Field Metadatum ID"New value: +"URL path parameter — custom Field Metadatum ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / view / descriptionPrevious value: -"The extended view provides what is shown below.\nThe default view returns the same as the extended view but excludes the attributes company_id, host_type, source_type, source_id, label, data_type.\nT..."New value: +"Query string parameter — the extended view provides what is shown below.\nThe default view returns the same as the extended view but excludes the attributes company_id, host_type, source_type, source_id, label, data_type.\nT..."
- Changed
show_custom_fields_section4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Custom Fields Section ID"New value: +"URL path parameter — custom Fields Section ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_daily_construction_report_logs4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Daily Construction Report Log ID"New value: +"URL path parameter — daily Construction Report Log ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_delay_logs4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Delay log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_delivery_log4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Delivery Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_department4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Department ID"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_detail_for_requisition_subcontractor_invoice4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / requisition_id / descriptionPrevious value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
- Changed
show_direct_cost_item4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Direct Costs resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
show_direct_cost_item_v1_1 - Changed
show_direct_cost_line_item5 fields changed- changed
Input schema / properties / direct_cost_id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the direct cost" - changed
Input schema / properties / id / descriptionPrevious value: -"Direct Cost Line Item ID"New value: +"URL path parameter — direct Cost Line Item ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_drawing_revision4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Drawing Revision"New value: +"URL path parameter — iD of the Drawing Revision" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
show_drawing_upload - Removed
show_drawing_upload_v1_1 - Changed
show_dumpster_logs4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Dumpster Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_early_pay_program4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / early_pay_program_id / descriptionPrevious value: -"UUID of the early pay program"New value: +"URL path parameter — uUID of the early pay program" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_email_communication4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Communication ID"New value: +"URL path parameter — unique identifier of the Emails resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_environmental5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Environmental ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_equipment_change_history4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_equipment_company4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_equipment_logs4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Equipment Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_equipment_maintenance_log4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the company to get the makes for"New value: +"URL path parameter — iD of the company to get the makes for" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_equipment_project4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_equipment_timecard_entry_project5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the equipment timecard entry"New value: +"URL path parameter — iD of the equipment timecard entry" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_filing_type4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Filing Type ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_first_prime_contract3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_form4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Form ID"New value: +"URL path parameter — unique identifier of the Forms resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_generic_tool_item_project6 fields changed- changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool" - changed
Input schema / properties / generic_tool_item_id / descriptionPrevious value: -"Unique identifier for the Generic Tool Item"New value: +"URL path parameter — unique identifier for the Generic Tool Item" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"If supplied customize the response format"New value: +"Query string parameter — if supplied customize the response format"
- Changed
show_generic_tool_item_v1_04 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Generic Tool Item ID"New value: +"URL path parameter — generic Tool Item ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_gps_position4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Gps Position"New value: +"URL path parameter — iD of the Gps Position" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_harm_source4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Harm Source ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_hazard4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Hazard ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_image4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the image"New value: +"URL path parameter — unique identifier of the Photos resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_image_category4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the image category"New value: +"URL path parameter — iD of the image category" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_incident4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Incident ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_incident_action_type4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Incident Action Type ID"New value: +"URL path parameter — incident Action Type ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_incident_alert4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Incident Alert ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_incident_alert_recipient5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Incident Alert Recipient's User ID"New value: +"URL path parameter — incident Alert Recipient's User ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / severity_level_id / descriptionPrevious value: -"Incident Severity Level ID"New value: +"URL path parameter — incident Severity Level ID"
- Changed
show_incident_severity_level4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Incident Severity Level ID"New value: +"URL path parameter — incident Severity Level ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_injury5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Injury ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_inspection_logs4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Inspection Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_inspection_type4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Inspection Type ID"New value: +"URL path parameter — unique identifier of the Inspections resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_instruction4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Instruction ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_instruction_type4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Instruction ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_item_response_set4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Item Response Set ID"New value: +"URL path parameter — item Response Set ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_item_response_set_response5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"The ID of the Response"New value: +"URL path parameter — the ID of the Response" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / response_set_id / descriptionPrevious value: -"Checklist Item Response Set ID"New value: +"URL path parameter — checklist Item Response Set ID"
- Changed
show_line_item_type4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_link4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Link ID"New value: +"URL path parameter — unique identifier of the Project-Level Configuration resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_location4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the location"New value: +"URL path parameter — unique identifier of the Project resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_lookahead4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Lookahead ID"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
show_lookahead_v1_1 - Changed
show_manpower_logs4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Manpower Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_material4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the project"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
show_meeting - Added
show_meeting_project - Added
show_meeting_v1_0 - Removed
show_meeting_v1_1 - Changed
show_near_miss5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Near Miss ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
show_new_change_event - Removed
show_new_change_event_v1_1 - Changed
show_next_available_number_for_observation_items3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_notes_logs4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Notes Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_observation_item4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Observation Item ID"New value: +"URL path parameter — unique identifier of the Observations resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_or_create_document_markup_downloadable_pdf5 fields changed- changed
Input schema / properties / attachment_id / descriptionPrevious value: -"attachment_id"New value: +"JSON request body field — unique identifier of the attachment" - changed
Input schema / properties / item_id / descriptionPrevious value: -"The ID of the parent item this document belongs to"New value: +"JSON request body field — the ID of the parent item this document belongs to" - changed
Input schema / properties / item_type / descriptionPrevious value: -"The type of the parent item this document belongs to (eg SubmittalLog)"New value: +"JSON request body field — the type of the parent item this document belongs to (eg SubmittalLog)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"JSON request body field — unique identifier for the Procore project" - changed
Input schema / properties / version_datetime / descriptionPrevious value: -"Version Datetime of the Document"New value: +"Query string parameter — version Datetime of the Document"
- Changed
show_payment_application_owner_invoice4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Payment Application (Owner Invoice) ID"New value: +"URL path parameter — payment Application (Owner Invoice) ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_payments_beneficiary4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / payments_beneficiary_id / descriptionPrevious value: -"Unique identifier of the payments beneficiary"New value: +"URL path parameter — unique identifier of the payments beneficiary" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_permission_manifest5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"This parameter is required for company level permissions and should be omitted for project level permissions."New value: +"Query string parameter — this parameter is required for company level permissions and should be omitted for project level permissions." - changed
Input schema / properties / filter_correspondence_types / descriptionPrevious value: -"Filter out Correspondence Types from permissions."New value: +"Query string parameter — filter out Correspondence Types from permissions." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"This parameter is required for project level permissions and should be omitted for company level permissions."New value: +"Query string parameter — this parameter is required for project level permissions and should be omitted for company level permissions."
- Changed
show_plan_revision_logs4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Plan Revision Log ID"New value: +"URL path parameter — plan Revision Log ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_potential_change_order_line_item5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Change Orders resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / potential_change_order_id / descriptionPrevious value: -"Potential Change Order ID"New value: +"URL path parameter — potential Change Order ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_potential_change_orders5 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Change Orders resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_prime_change_order5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Prime Change Order"New value: +"URL path parameter — iD of the Prime Change Order" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies Which view (which attributes) of the resource is going to be present in the response. the extended view includes change events data, while the default view does not."New value: +"Query string parameter — specifies Which view (which attributes) of the resource is going to be present in the response. the extended view includes change events data, while the default view does not."
- Changed
show_prime_change_order_batch4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Prime Change Order Batch"New value: +"URL path parameter — iD of the Prime Change Order Batch" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
show_prime_change_order_line_item - Removed
show_prime_change_order_line_item_v2_0 - Removed
show_prime_contract - Removed
show_prime_contract_line_item - Added
show_prime_contract_line_item_project - Added
show_prime_contract_line_item_v1_0 - Removed
show_prime_contract_line_item_v2_0 - Added
show_prime_contract_project - Added
show_prime_contract_summary - Removed
show_prime_contract_summary_v2_0 - Added
show_prime_contract_v1_0 - Removed
show_prime_contract_v2_0 - Changed
show_productivity_logs4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Productivity Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_program4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the program"New value: +"URL path parameter — unique identifier of the Company Settings resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_project5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / view / descriptionPrevious value: -"The view determines which fields are returned for the project show endpoint. 'minimal' returns a subset of project fields including name, project_number, country_code, latitude, longitude, county,..."New value: +"Query string parameter — the view determines which fields are returned for the project show endpoint. 'minimal' returns a subset of project fields including name, project_number, country_code, latitude, longitude, county,..."
- Changed
show_project_action_plan_template_reference4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Project Action Plan Template Reference ID"New value: +"URL path parameter — project Action Plan Template Reference ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_project_bid_type4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Project Bid Type"New value: +"URL path parameter — iD of the Project Bid Type" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_project_checklist_template4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
show_project_checklist_template_v1_1 - Changed
show_project_date_v1_04 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Project Date"New value: +"URL path parameter — iD of the Project Date" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_project_date_v1_0_24 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Project Date"New value: +"URL path parameter — iD of the Project Date" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_project_distribution_group_v1_09 fields changed- changed
Input schema / properties / distribution_group_id / descriptionPrevious value: -"Unique identifier for the distribution group."New value: +"URL path parameter — unique identifier for the distribution group." - changed
Input schema / properties / domain_id / descriptionPrevious value: -"Parameter affecting the scope for the Distribution Groups, by default it is the Domain ID of the Submittals Tool. Will return only Distributions Groups who users that have access to the Tool specif..."New value: +"Query string parameter — parameter affecting the scope for the Distribution Groups, by default it is the Domain ID of the Submittals Tool. Will return only Distributions Groups who users that have access to the Tool specif..." - changed
Input schema / properties / include_ancestors / descriptionPrevious value: -"Parameter affecting what groups can be returned from this endpoint. When 'true', this endpoint will only return distribution groups with users that match the provided (or default) `domain_id` and `..."New value: +"Query string parameter — parameter affecting what groups can be returned from this endpoint. When 'true', this endpoint will only return distribution groups with users that match the provided (or default) `domain_id` and `..." - changed
Input schema / properties / min_ual / descriptionPrevious value: -"Parameter affecting the scope for the Distribution Groups, by default it is the 'read' user access level. Will return only Distributions Groups who users that have the min ual specified by the 'min..."New value: +"Query string parameter — parameter affecting the scope for the Distribution Groups, by default it is the 'read' user access level. Will return only Distributions Groups who users that have the min ual specified by the 'min..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / ual / descriptionPrevious value: -"Parameter affecting the scope for the Distribution Groups. Will return only Distributions Groups who users that have the exact ual specified by the 'ual'. If provided, this will take precendence o..."New value: +"Query string parameter — parameter affecting the scope for the Distribution Groups. Will return only Distributions Groups who users that have the exact ual specified by the 'ual'. If provided, this will take precendence o..." - changed
Input schema / properties / view / descriptionPrevious value: -"Parameter affecting what level of detail will be returned from the endpoint. 'extended' will include the users in the distribution group."New value: +"Query string parameter — parameter affecting what level of detail will be returned from the endpoint. 'extended' will include the users in the distribution group."
- Changed
show_project_distribution_group_v1_0_28 fields changed- changed
Input schema / properties / distribution_group_id / descriptionPrevious value: -"Unique identifier for the distribution group."New value: +"URL path parameter — unique identifier for the distribution group." - changed
Input schema / properties / domain_id / descriptionPrevious value: -"Parameter affecting the scope for the Distribution Groups, by default it is the Domain ID of the Submittals Tool. Will return only Distributions Groups who users that have access to the Tool specif..."New value: +"Query string parameter — parameter affecting the scope for the Distribution Groups, by default it is the Domain ID of the Submittals Tool. Will return only Distributions Groups who users that have access to the Tool specif..." - changed
Input schema / properties / min_ual / descriptionPrevious value: -"Parameter affecting the scope for the Distribution Groups, by default it is the 'read' user access level. Will return only Distributions Groups who users that have the min ual specified by the 'min..."New value: +"Query string parameter — parameter affecting the scope for the Distribution Groups, by default it is the 'read' user access level. Will return only Distributions Groups who users that have the min ual specified by the 'min..." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / ual / descriptionPrevious value: -"Parameter affecting the scope for the Distribution Groups. Will return only Distributions Groups who users that have the exact ual specified by the 'ual'. If provided, this will take precendence o..."New value: +"Query string parameter — parameter affecting the scope for the Distribution Groups. Will return only Distributions Groups who users that have the exact ual specified by the 'ual'. If provided, this will take precendence o..." - changed
Input schema / properties / view / descriptionPrevious value: -"Parameter affecting what level of detail will be returned from the endpoint. 'extended' will include the users in the distribution group."New value: +"Query string parameter — parameter affecting what level of detail will be returned from the endpoint. 'extended' will include the users in the distribution group."
- Changed
show_project_equipment_maintenance_log4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the company to get the maintenance logs for"New value: +"URL path parameter — iD of the company to get the maintenance logs for" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_project_file5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the File"New value: +"URL path parameter — unique identifier of the Documents resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / show_latest_version_only / descriptionPrevious value: -"Show only latest File version"New value: +"Query string parameter — show only latest File version"
- Changed
show_project_file_version4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the file version"New value: +"URL path parameter — iD of the file version" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_project_folder7 fields changed- changed
Input schema / properties / exclude_files / descriptionPrevious value: -"Exclude children files from results. Must be either true or false."New value: +"Query string parameter — exclude children files from results. Must be either true or false." - changed
Input schema / properties / exclude_folders / descriptionPrevious value: -"Exclude children Folders from results. Must be either true or false."New value: +"Query string parameter — exclude children Folders from results. Must be either true or false." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the folder"New value: +"URL path parameter — unique identifier of the Documents resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / show_latest_file_version_only / descriptionPrevious value: -"Show only the latest file version. Must be either true or false."New value: +"Query string parameter — show only the latest file version. Must be either true or false."
- Changed
show_project_inspection_template_item_reference5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"The ID of the Project Inspection Template Item Reference"New value: +"URL path parameter — the ID of the Project Inspection Template Item Reference" - changed
Input schema / properties / inspection_template_id / descriptionPrevious value: -"The ID of the Project Inspection Template"New value: +"URL path parameter — the ID of the Project Inspection Template" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_project_insurance5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Extended view of data"New value: +"Query string parameter — extended view of data"
- Changed
show_project_location4 fields changed- changed
Input schema / properties / location_id / descriptionPrevious value: -"ID of the location"New value: +"URL path parameter — unique identifier of the location" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_project_owner_type4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Project Owner Type"New value: +"URL path parameter — iD of the Project Owner Type" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_project_region4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Project Region"New value: +"URL path parameter — iD of the Project Region" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_project_schedule_settings3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_project_stage4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the project stage"New value: +"URL path parameter — iD of the project stage" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_project_type4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the project type"New value: +"URL path parameter — iD of the project type" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_project_upload4 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / uuid / descriptionPrevious value: -"Upload UUID"New value: +"URL path parameter — upload UUID"
- Removed
show_project_upload_v1_1 - Changed
show_project_user4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the user"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_project_vendor5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the vendor"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"The normal view provides what is shown below.\nThe extended view is the same as the normal view but includes children_count, legal_name, parent, and bidding.\nThe default view is normal."New value: +"Query string parameter — the normal view provides what is shown below.\nThe extended view is the same as the normal view but includes children_count, legal_name, parent, and bidding.\nThe default view is normal."
- Changed
show_project_vendor_insurance6 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor" - changed
Input schema / properties / view / descriptionPrevious value: -"Extended view of data"New value: +"Query string parameter — extended view of data"
- Removed
show_project_vendor_v1_1 - Changed
show_project_wbs_segment5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource" - changed
Input schema / properties / legacy_sub_job_id / descriptionPrevious value: -"Legacy Sub_Job ID"New value: +"Query string parameter — unique identifier of the legacy sub job" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_property_damage5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Property Damage ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_punch_assignment4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Punch Item Assignment"New value: +"URL path parameter — iD of the Punch Item Assignment" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_punch_item5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Punch Item"New value: +"URL path parameter — iD of the Punch Item" - changed
Input schema / properties / include_deleted / descriptionPrevious value: -"Returns deleted items when set to true"New value: +"Query string parameter — returns deleted items when set to true" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_punch_item_type4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Punch Item Type"New value: +"URL path parameter — iD of the Punch Item Type" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Removed
show_punch_item_v1_1 - Changed
show_purchase_order_contract4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_purchase_order_contract_detail_line_item5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / purchase_order_contract_id / descriptionPrevious value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
- Changed
show_purchase_order_contract_line_item6 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / purchase_order_contract_id / descriptionPrevious value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view (which attributes) of the resource is going to be present in the response. 'default' view\nwill be rendered by default if the parameter is not provided.\nFor the 'ssov_source_lin..."New value: +"Query string parameter — specifies which view (which attributes) of the resource is going to be present in the response. 'default' view\nwill be rendered by default if the parameter is not provided.\nFor the 'ssov_source_lin..."
- Changed
show_quantity_logs4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Quantity Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
show_recent_timecard_entry_wbs_code_ids_deprecated - Removed
show_recent_timecard_entry_wbs_code_ids_deprecated_v1_1 - Changed
show_recycled_action5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_action_plan4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan ID"New value: +"URL path parameter — unique identifier of the Action Plans resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_action_plan_item4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Item ID"New value: +"URL path parameter — unique identifier of the Action Plans resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_action_plan_item_assignee4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Item Assignee ID"New value: +"URL path parameter — action Plan Item Assignee ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_action_plan_reference4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Reference ID"New value: +"URL path parameter — action Plan Reference ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_action_plan_section4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Section ID"New value: +"URL path parameter — action Plan Section ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_action_plan_template_approver4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Template Approver ID"New value: +"URL path parameter — action Plan Template Approver ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_action_plan_template_items4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Template Item ID"New value: +"URL path parameter — action Plan Template Item ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_recycled_action_plan_template_receiver4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Template Receiver ID"New value: +"URL path parameter — action Plan Template Receiver ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_action_plan_template_section4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Template Section ID"New value: +"URL path parameter — action Plan Template Section ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_recycled_action_plan_test_record4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Test Record ID"New value: +"URL path parameter — action Plan Test Record ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_action_plan_test_record_request4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Test Record Request ID"New value: +"URL path parameter — action Plan Test Record Request ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
show_recycled_action_v1_1 - Changed
show_recycled_checklist_inspection4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the Inspections resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_checklist_template4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_company_action_plan_template4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Action Plan Template ID"New value: +"URL path parameter — company Action Plan Template ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_recycled_company_action_plan_template_items_assignee4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Template Item Assignee ID"New value: +"URL path parameter — action Plan Template Item Assignee ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_recycled_company_action_plan_template_reference4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Template Reference ID"New value: +"URL path parameter — action Plan Template Reference ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_recycled_company_action_plan_template_test_record_request4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Action Plan Template Test Record Request ID"New value: +"URL path parameter — company Action Plan Template Test Record Request ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Removed
show_recycled_company_action_plan_template_v1_1 - Changed
show_recycled_company_checklist_template4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Checklist Template ID"New value: +"URL path parameter — company Checklist Template ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_recycled_company_form_template4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Form Template ID"New value: +"URL path parameter — company Form Template ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_recycled_environmental5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Environmental ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_incident4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Incident ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_injury5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Injury ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_near_miss5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Near Miss ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_observation4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Observation ID"New value: +"URL path parameter — unique identifier of the Observations resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_project_action_plan_template_reference4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Template Reference ID"New value: +"URL path parameter — action Plan Template Reference ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_project_form4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Project Form ID"New value: +"URL path parameter — unique identifier of the Forms resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_property_damage5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Property Damage ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_recycled_witness_statement5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Witness Statement ID"New value: +"URL path parameter — witness Statement ID" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
show_recycled_witness_statement_v1_1 - Changed
show_requisition_subcontractor_invoice5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — specifies which view (which attributes) of the resource is going to be present in the response.", + "enum": [ + "default", + "extended", + "items", + "action_policy" + ], + "type": "string" +}
- Changed
show_requisition_subcontractor_invoice_change_order_item5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Change Order Item ID"New value: +"URL path parameter — change Order Item ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / requisition_id / descriptionPrevious value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
- Changed
show_requisition_subcontractor_invoice_contract_detail_item5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Contract Detail Item ID"New value: +"URL path parameter — contract Detail Item ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / requisition_id / descriptionPrevious value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
- Changed
show_requisition_subcontractor_invoice_contract_item5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Contract Item ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / requisition_id / descriptionPrevious value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
- Removed
show_requisition_subcontractor_invoice_v1_1 - Removed
show_resource - Added
show_resource_assignment - Removed
show_resource_assignment_v1_1 - Added
show_resource_project - Added
show_resource_v1_0 - Removed
show_resource_v1_1 - Changed
show_response4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"The ID of the Response"New value: +"URL path parameter — the ID of the Response" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_rfi4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"RFI ID"New value: +"URL path parameter — unique identifier of the RFI resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_rfi_in_pdf_format5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"RFI ID"New value: +"URL path parameter — unique identifier of the RFI resource" - changed
Input schema / properties / only_official / descriptionPrevious value: -"If true, include only official responses; if false return all responses."New value: +"Query string parameter — if true, include only official responses; if false return all responses." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_rfi_reply5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Reply ID"New value: +"URL path parameter — unique identifier of the RFI resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / rfi_id / descriptionPrevious value: -"RFI ID"New value: +"URL path parameter — unique identifier of the rfi"
- Changed
show_rfq5 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_rfq_quote6 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract" - changed
Input schema / properties / id / descriptionPrevious value: -"RFQ Quote ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / rfq_id / descriptionPrevious value: -"RFQ ID"New value: +"URL path parameter — unique identifier of the rfq"
- Changed
show_rfq_response6 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / rfq_id / descriptionPrevious value: -"RFQ ID"New value: +"URL path parameter — unique identifier of the rfq"
- Changed
show_rounding_configuration3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_safety_violation_logs4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Safety Violation Log ID"New value: +"URL path parameter — safety Violation Log ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_specification_section_revision4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Specification section revision ID"New value: +"URL path parameter — specification section revision ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_specification_set4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the specification section to show"New value: +"URL path parameter — iD of the specification section to show" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_standard_cost_code6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / standard_cost_code_list_id / descriptionPrevious value: -"The ID of the Standard Cost Code List"New value: +"Query string parameter — the ID of the Standard Cost Code List" - changed
Input schema / properties / view / descriptionPrevious value: -"The 'default' view only returns id and standard_cost_code_list_id. The 'compact' view also includes\norigin_id. The 'extended' view includes the more complete list of attributes shown below. The 'ex..."New value: +"Query string parameter — the 'default' view only returns id and standard_cost_code_list_id. The 'compact' view also includes\norigin_id. The 'extended' view includes the more complete list of attributes shown below. The 'ex..."
- Changed
show_standard_cost_code_list4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier for the Standard Cost Code"New value: +"URL path parameter — unique identifier for the Standard Cost Code" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_sub_job4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Added
show_submittal_in_pdf_format - Removed
show_submittal_in_pdf_format_v1_1 - Changed
show_submittal_project4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Submittal ID"New value: +"URL path parameter — unique identifier of the Submittals resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_submittal_v1_04 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of Submittal"New value: +"URL path parameter — unique identifier of the Submittals resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Removed
show_submittal_v1_1 - Changed
show_task4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the task"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_task_item4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Task Item ID"New value: +"URL path parameter — unique identifier of the Tasks resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_tax_code4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"The Tax Code ID"New value: +"URL path parameter — unique identifier of the Tax resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_tax_type4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"The Tax Type ID"New value: +"URL path parameter — unique identifier of the Tax resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_the_schedule_integration_type_for_a_project3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_time_and_material_entry4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_time_and_material_equipment_log4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_time_and_material_notification3 fields changed- changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_time_and_material_timecard4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the project to get the time and material timecards for"New value: +"URL path parameter — iD of the project to get the time and material timecards for" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_timecard_entry4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_timecard_entry_change_history_company4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_timecard_entry_company4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_timecard_entry_project4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_timesheet_approval_status_filters3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_timesheet_billable_filters3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_timesheet_created_by_filters3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_timesheet_crews_filters3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_timesheet_department_filters3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_timesheet_employee_filters3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_timesheet_employee_id_filters3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_timesheet_location_filters3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_timesheet_office_filters3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_timesheet_project_filters3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_timesheet_region_filters3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_timesheet_sub_job_filters3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_timesheet_time_type_filters3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_timesheet_to_budget_configuration3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_timesheet_wbs_code_filters3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_timesheet_work_classification_filters3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_todo4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the todo"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_trade4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Trade ID"New value: +"URL path parameter — unique identifier of the Company Settings resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_unit_of_measure4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Unit of Measure ID"New value: +"URL path parameter — unique identifier of the Units of Measure resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_user_info4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. You must supply either a company_id or project_id in order for a name to be returned."New value: +"Query string parameter — unique identifier for the company. You must supply either a company_id or project_id in order for a name to be returned." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project. You must supply either a company_id or project_id in order for a name to be returned."New value: +"Query string parameter — unique identifier for the project. You must supply either a company_id or project_id in order for a name to be returned."
- Changed
show_visitor_logs4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Visitor Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_waste_logs4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Waste Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
show_weather_log - Removed
show_weather_log_v1_1 - Changed
show_weather_logs5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Use log date as your ID. Format YYYYMMDD ie:20161108"New value: +"URL path parameter — use log date as your ID. Format YYYYMMDD ie:20161108" - changed
Input schema / properties / log_date / descriptionPrevious value: -"Log date of specific log desired in YYYY-MM-DD format (This will override ID as log Date)"New value: +"Query string parameter — log date of specific log desired in YYYY-MM-DD format (This will override ID as log Date)" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_witness_statement5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Witness Statement ID"New value: +"URL path parameter — witness Statement ID" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_work_activity4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Work Activity ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
show_work_logs4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Work Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
show_work_order_contract4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
show_work_order_contract_detail_line_item5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / work_order_contract_id / descriptionPrevious value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
- Changed
show_work_order_contract_line_item6 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view (which attributes) of the resource is going to be present in the response. 'default' view\nwill be rendered by default if the parameter is not provided.\nFor the 'ssov_source_lin..."New value: +"Query string parameter — specifies which view (which attributes) of the resource is going to be present in the response. 'default' view\nwill be rendered by default if the parameter is not provided.\nFor the 'ssov_source_lin..." - changed
Input schema / properties / work_order_contract_id / descriptionPrevious value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
- Changed
show_workflow_activity_history5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Workflows resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / workflow_instance_id / descriptionPrevious value: -"Workflow Instance ID"New value: +"Query string parameter — workflow Instance ID"
- Changed
show_workflow_instance4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Workflows resource" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
sync_budget_line_items2 fields changed- changed
Input schema / properties / budget_line_items / descriptionPrevious value: -"budget_line_items"New value: +"JSON request body field — the budget line items for this Budget operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Project ID"New value: +"JSON request body field — unique identifier for the Procore project"
- Changed
sync_calendar_items2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Schedule (Legacy) operation"
- Changed
sync_change_order_requests3 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Change Orders operation"
- Changed
sync_company_insurances2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Directory operation"
- Changed
sync_company_insurances_alternative1 field changed- changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Directory operation"
- Changed
sync_company_users2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Directory operation"
- Removed
sync_company_users_v1_1 - Removed
sync_company_users_v1_2 - Removed
sync_company_users_v1_3 - Changed
sync_company_vendor_insurances3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Directory operation" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
- Changed
sync_company_vendors3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Directory operation"
- Changed
sync_cost_codes3 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / sub_job_id / descriptionPrevious value: -"Unique identifier for the Sub Job"New value: +"Query string parameter — unique identifier for the Sub Job" - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Work Breakdown Structure operation"
- Changed
sync_direct_cost_items2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / updates / descriptionPrevious value: -"An array of Direct Cost Items"New value: +"JSON request body field — an array of Direct Cost Items"
- Changed
sync_direct_cost_line_items2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Direct Costs operation"
- Changed
sync_line_item_types2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company" - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Commitments operation"
- Changed
sync_potential_change_order_line_items3 fields changed- changed
Input schema / properties / potential_change_order_id / descriptionPrevious value: -"Potential Change Order ID"New value: +"URL path parameter — potential Change Order ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Change Orders operation"
- Changed
sync_potential_change_orders3 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Change Orders operation"
- Changed
sync_prime_contract_line_items3 fields changed- changed
Input schema / properties / prime_contract_id / descriptionPrevious value: -"Prime Contract ID"New value: +"URL path parameter — unique identifier of the prime contract" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Prime Contracts operation"
- Changed
sync_project_insurances2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Directory operation"
- Changed
sync_project_vendor_insurances3 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Directory operation" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
- Changed
sync_projects3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"The company identifier the project is associated with.\nRequired only if `company_id` is not included in the request's query parameters."New value: +"JSON request body field — the company identifier the project is associated with.\nRequired only if `company_id` is not included in the request's query parameters." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Portfolio operation"
- Changed
sync_purchase_order_contract_line_items3 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / purchase_order_contract_id / descriptionPrevious value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID" - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Commitments operation"
- Changed
sync_purchase_order_contracts2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / updates / descriptionPrevious value: -"Updated Purchase Order Contracts"New value: +"JSON request body field — updated Purchase Order Contracts"
- Changed
sync_standard_cost_codes4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company" - changed
Input schema / properties / standard_cost_code_list_id / descriptionPrevious value: -"Standard Cost Code list ID"New value: +"JSON request body field — standard Cost Code list ID" - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Work Breakdown Structure operation" - changed
Input schema / properties / view / descriptionPrevious value: -"The 'default' view only returns id and standard_cost_code_list_id. The 'compact' view also includes\norigin_id. The 'extended' view includes the more complete list of attributes shown below. The 'ex..."New value: +"Query string parameter — the 'default' view only returns id and standard_cost_code_list_id. The 'compact' view also includes\norigin_id. The 'extended' view includes the more complete list of attributes shown below. The 'ex..."
- Changed
sync_sub_jobs2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Work Breakdown Structure operation"
- Changed
sync_tasks2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Tasks belongs to"New value: +"JSON request body field — the ID of the Project the Tasks belongs to" - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Schedule (Legacy) operation"
- Changed
sync_tax_codes2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company" - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Tax operation"
- Changed
sync_tax_types2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company" - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Tax operation"
- Changed
sync_todos2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Schedule (Legacy) operation"
- Changed
sync_units_of_measure3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / deletes / descriptionPrevious value: -"deletes"New value: +"JSON request body field — the deletes for this Units of Measure operation" - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Units of Measure operation"
- Changed
sync_work_order_contract_line_items3 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / updates / descriptionPrevious value: -"updates"New value: +"JSON request body field — the updates for this Commitments operation" - changed
Input schema / properties / work_order_contract_id / descriptionPrevious value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
- Changed
sync_work_order_contracts2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / updates / descriptionPrevious value: -"Updated Work order contracts"New value: +"JSON request body field — updated Work order contracts"
- Added
terminate_a_workflow_instance_company_public - Removed
terminate_a_workflow_instance_company_public_v2_0 - Added
terminate_a_workflow_instance_project_public - Removed
terminate_a_workflow_instance_project_public_v2_0 - Changed
toggle_checklist_section_not_applicable_status_v1_04 fields changed- changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list" - changed
Input schema / properties / not_applicable / descriptionPrevious value: -"Not applicable status"New value: +"JSON request body field — not applicable status" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / section_id / descriptionPrevious value: -"Checklist Section ID"New value: +"URL path parameter — checklist Section ID"
- Changed
toggle_checklist_section_not_applicable_status_v1_0_24 fields changed- changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list" - changed
Input schema / properties / not_applicable / descriptionPrevious value: -"Not applicable status"New value: +"JSON request body field — not applicable status" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / section_id / descriptionPrevious value: -"Checklist Section ID"New value: +"URL path parameter — checklist Section ID"
- Added
unassign_the_attribute_items_from_the_wbs_codes - Removed
unassign_the_attribute_items_from_the_wbs_codes_v2_0 - Changed
update_a_bid_from_a_bid_package15 fields changed- added
Input schema / properties / bid_itemsAdded value: +{ + "description": "JSON request body field — bid Items for a Bid", + "items": {}, + "type": "array" +} - added
Input schema / properties / bid_items_to_deleteAdded value: +{ + "description": "JSON request body field — iDs of Bid Items that need to be deleted", + "items": {}, + "type": "array" +} - changed
Input schema / properties / bid_package_id / descriptionPrevious value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package" - added
Input schema / properties / bid_statusAdded value: +{ + "description": "JSON request body field — this status is combination of the `invitation_last_sent_at`, `is_bidder_committed`, `submitted`, & `awarded` values.\nThe `not_invited` status is the same as `invitation_last_sent_at` being null, ...", + "enum": [ + "not_invited", + "undecided", + "will_not_bid", + "will_bid", + "submitted", + "awarded" + ], + "type": "string" +} - changed
Input schema / properties / bidder_comments / descriptionPrevious value: -"Comments"New value: +"JSON request body field — comments" - changed
Input schema / properties / bidder_exclusion / descriptionPrevious value: -"Exclusions"New value: +"JSON request body field — exclusions" - changed
Input schema / properties / bidder_inclusion / descriptionPrevious value: -"Inclusions"New value: +"JSON request body field — inclusions" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Bid Management resource" - changed
Input schema / properties / is_bidder_committed / descriptionPrevious value: -"Bidder committed"New value: +"JSON request body field — bidder committed" - changed
Input schema / properties / lump_sum_amount / descriptionPrevious value: -"Lump sum (overall) amount"New value: +"JSON request body field — lump sum (overall) amount" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - added
Input schema / properties / prostore_file_idsAdded value: +{ + "description": "JSON request body field — array of Prostore File IDs for attachments", + "items": {}, + "type": "array" +} - changed
Input schema / properties / recipient_ids / descriptionPrevious value: -"Array of Login IDs to add as recipients"New value: +"JSON request body field — array of Login IDs to add as recipients" - added
Input schema / properties / show_bid_in_estimatingAdded value: +{ + "description": "JSON request body field — show bid in Estimating", + "type": "boolean" +} - changed
Input schema / properties / submitted / descriptionPrevious value: -"Vendor submitted Bid"New value: +"JSON request body field — vendor submitted Bid"
- Removed
update_a_bid_from_a_bid_package_v1_1 - Changed
update_a_bid_within_a_company13 fields changed- changed
Input schema / properties / attachments_attributes / descriptionPrevious value: -"attachments_attributes"New value: +"JSON request body field — attachments_attributes" - changed
Input schema / properties / bid_items_attributes / descriptionPrevious value: -"bid_items_attributes"New value: +"JSON request body field — bid_items_attributes" - changed
Input schema / properties / bid_items_to_delete / descriptionPrevious value: -"IDs of Bid Items that need to be deleted"New value: +"JSON request body field — iDs of Bid Items that need to be deleted" - changed
Input schema / properties / bidder_comments / descriptionPrevious value: -"Comments"New value: +"JSON request body field — comments" - changed
Input schema / properties / bidder_exclusion / descriptionPrevious value: -"Exclusions"New value: +"JSON request body field — exclusions" - changed
Input schema / properties / bidder_id / descriptionPrevious value: -"Bidder Login ID"New value: +"JSON request body field — unique identifier of the bidder" - changed
Input schema / properties / bidder_inclusion / descriptionPrevious value: -"Inclusions"New value: +"JSON request body field — inclusions" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Bid Management resource" - changed
Input schema / properties / is_bidder_committed / descriptionPrevious value: -"Bidder committed"New value: +"JSON request body field — bidder committed" - changed
Input schema / properties / lump_sum_amount / descriptionPrevious value: -"Lump sum (overall) amount"New value: +"JSON request body field — lump sum (overall) amount" - changed
Input schema / properties / submitted / descriptionPrevious value: -"Vendor submitted Bid"New value: +"JSON request body field — vendor submitted Bid" - changed
Input schema / properties / uploads / descriptionPrevious value: -"uploads"New value: +"JSON request body field — the uploads for this Bid Management operation"
- Changed
update_a_budgeted_production_quantity6 fields changed- changed
Input schema / properties / cost_code_id / descriptionPrevious value: -"CostCode. DO NOT provide if your project is configured for Task Codes."New value: +"JSON request body field — costCode. DO NOT provide if your project is configured for Task Codes." - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Budgeted Production Quantity"New value: +"URL path parameter — id of the Budgeted Production Quantity" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Project"New value: +"JSON request body field — unique identifier for the Procore project" - changed
Input schema / properties / quantity / descriptionPrevious value: -"Quantity budgeted for a project cost code"New value: +"JSON request body field — quantity budgeted for a project cost code" - changed
Input schema / properties / unit_of_measure / descriptionPrevious value: -"Unit of Measure"New value: +"JSON request body field — the unit of measure for this Budget operation" - changed
Input schema / properties / wbs_code_id / descriptionPrevious value: -"The Production Quantity Code for the Budgeted Production Quantity. This is necessary if your project is configured for Task Codes. DO NOT provide if your project is not configured for Task Codes."New value: +"JSON request body field — the Production Quantity Code for the Budgeted Production Quantity. This is necessary if your project is configured for Task Codes. DO NOT provide if your project is not configured for Task Codes."
- Added
update_a_change_event_status - Removed
update_a_change_event_status_v2_0 - Added
update_a_change_event_type - Removed
update_a_change_event_type_v2_0 - Added
update_a_change_order_change_reason - Removed
update_a_change_order_change_reason_v2_0 - Changed
update_a_checklist_inspection_schedule13 fields changed- changed
Input schema / properties / assignee_ids / descriptionPrevious value: -"assignee_ids"New value: +"JSON request body field — array of assignee identifiers" - changed
Input schema / properties / distribution_member_ids / descriptionPrevious value: -"distribution_member_ids"New value: +"JSON request body field — distribution_member_ids" - changed
Input schema / properties / ends_at / descriptionPrevious value: -"Timestamp indicating when the last Inspection in the Schedule should be due. Not used when frequency is once."New value: +"JSON request body field — timestamp indicating when the last Inspection in the Schedule should be due. Not used when frequency is once." - changed
Input schema / properties / equipment_id / descriptionPrevious value: -"The ID of the Equipment to set on the Schedule."New value: +"JSON request body field — the ID of the Equipment to set on the Schedule." - changed
Input schema / properties / first_inspection_due_at / descriptionPrevious value: -"Timestamp indicating when the first Inspection in the Schedule should be due. Cannot be in the past."New value: +"JSON request body field — timestamp indicating when the first Inspection in the Schedule should be due. Cannot be in the past." - changed
Input schema / properties / frequency / descriptionPrevious value: -"The frequency at which Inspections will be created by the Schedule."New value: +"JSON request body field — the frequency at which Inspections will be created by the Schedule." - changed
Input schema / properties / id / descriptionPrevious value: -"Checklist Schedule ID"New value: +"URL path parameter — checklist Schedule ID" - changed
Input schema / properties / location_id / descriptionPrevious value: -"The ID of the Location to set on the Schedule."New value: +"JSON request body field — the ID of the Location to set on the Schedule." - changed
Input schema / properties / name / descriptionPrevious value: -"The name for the Checklist Schedule."New value: +"JSON request body field — the name for the Checklist Schedule." - changed
Input schema / properties / point_of_contact_id / descriptionPrevious value: -"The ID of a User to be set as the of the point of contact on the Schedule"New value: +"JSON request body field — the ID of a User to be set as the of the point of contact on the Schedule" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / responsible_contractor_id / descriptionPrevious value: -"The ID of a vendor to set as the responsible contractor on the Schedule."New value: +"JSON request body field — the ID of a vendor to set as the responsible contractor on the Schedule." - changed
Input schema / properties / specification_section_id / descriptionPrevious value: -"The ID of the specification section to set on the Schedule."New value: +"JSON request body field — the ID of the specification section to set on the Schedule."
- Changed
update_a_classification5 fields changed- changed
Input schema / properties / abbreviation / descriptionPrevious value: -"The shortened form of classification"New value: +"JSON request body field — the shortened form of classification" - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the classification"New value: +"URL path parameter — id of the classification" - changed
Input schema / properties / is_active / descriptionPrevious value: -"Is the classification active or not"New value: +"JSON request body field — is the classification active or not" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the classification"New value: +"JSON request body field — name of the classification" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
update_a_company_action_plan_template6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Action Plans operation" - changed
Input schema / properties / id / descriptionPrevious value: -"Company Action Plan Template ID"New value: +"URL path parameter — company Action Plan Template ID" - changed
Input schema / properties / plan_type_id / descriptionPrevious value: -"ID of an Action Plan Type"New value: +"JSON request body field — iD of an Action Plan Type" - added
Input schema / properties / privateAdded value: +{ + "description": "JSON request body field — privacy flag of the Company Action Plan Template", + "type": "boolean" +} - changed
Input schema / properties / title / descriptionPrevious value: -"Title"New value: +"JSON request body field — the title for this Action Plans operation"
- Removed
update_a_company_action_plan_template_v1_1 - Changed
update_a_compliance_document_project16 fields changed- changed
Input schema / properties / attachment_ids / descriptionPrevious value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response" - changed
Input schema / properties / contract_id / descriptionPrevious value: -"identifier for the commitment contract"New value: +"URL path parameter — identifier for the commitment contract" - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / effective_at / descriptionPrevious value: -"effective_at"New value: +"JSON request body field — the effective at for this Commitments operation" - changed
Input schema / properties / expires_at / descriptionPrevious value: -"expires_at"New value: +"JSON request body field — the expires at for this Commitments operation" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / id / descriptionPrevious value: -"identifier for the document"New value: +"URL path parameter — identifier for the document" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / name / descriptionPrevious value: -"name"New value: +"JSON request body field — the name for this Commitments operation" - changed
Input schema / properties / notes / descriptionPrevious value: -"notes"New value: +"JSON request body field — the notes for this Commitments operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / send_expiration_notification / descriptionPrevious value: -"send_expiration_notification"New value: +"JSON request body field — send_expiration_notification" - changed
Input schema / properties / status / descriptionPrevious value: -"status"New value: +"JSON request body field — the status for this Commitments operation" - changed
Input schema / properties / type / descriptionPrevious value: -"type"New value: +"JSON request body field — the type for this Commitments operation" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
- Changed
update_a_compliance_document_project_v1_016 fields changed- changed
Input schema / properties / attachment_ids / descriptionPrevious value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response" - changed
Input schema / properties / contract_id / descriptionPrevious value: -"identifier for the commitment contract"New value: +"URL path parameter — identifier for the commitment contract" - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / effective_at / descriptionPrevious value: -"effective_at"New value: +"JSON request body field — the effective at for this Commitments operation" - changed
Input schema / properties / expires_at / descriptionPrevious value: -"expires_at"New value: +"JSON request body field — the expires at for this Commitments operation" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / id / descriptionPrevious value: -"identifier for the document"New value: +"URL path parameter — identifier for the document" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / name / descriptionPrevious value: -"name"New value: +"JSON request body field — the name for this Commitments operation" - changed
Input schema / properties / notes / descriptionPrevious value: -"notes"New value: +"JSON request body field — the notes for this Commitments operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / send_expiration_notification / descriptionPrevious value: -"send_expiration_notification"New value: +"JSON request body field — send_expiration_notification" - changed
Input schema / properties / status / descriptionPrevious value: -"status"New value: +"JSON request body field — the status for this Commitments operation" - changed
Input schema / properties / type / descriptionPrevious value: -"type"New value: +"JSON request body field — the type for this Commitments operation" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
- Added
update_a_coordination_issue_rest_v2_0 - Removed
update_a_coordination_issue_rest_v2_0_v2_0 - Changed
update_a_crew6 fields changed- changed
Input schema / properties / equipment_ids / descriptionPrevious value: -"equipment_ids"New value: +"JSON request body field — array of equipment identifiers" - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Crew"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / lead_party_id / descriptionPrevious value: -"Party Id of crew leader"New value: +"JSON request body field — party Id of crew leader" - changed
Input schema / properties / name / descriptionPrevious value: -"Crew Name"New value: +"JSON request body field — crew Name" - changed
Input schema / properties / party_ids / descriptionPrevious value: -"party_ids"New value: +"JSON request body field — array of party identifiers" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
update_a_delay_log_type3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Delay Log Type ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / visible / descriptionPrevious value: -"Whether the Delay Log Type is visible in the UI"New value: +"JSON request body field — whether the Delay Log Type is visible in the UI"
- Changed
update_a_drawing_area4 fields changed- changed
Input schema / properties / description / descriptionPrevious value: -"Drawing Area description"New value: +"JSON request body field — drawing Area description" - changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier for the drawing area."New value: +"URL path parameter — unique identifier for the drawing area." - changed
Input schema / properties / name / descriptionPrevious value: -"Drawing Area name"New value: +"JSON request body field — drawing Area name" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
update_a_drawing_area_v1_1 - Changed
update_a_job_title7 fields changed- changed
Input schema / properties / color / descriptionPrevious value: -"Hexadecimal color code for the Job Title. Helps with categorization and visual distinction.\n"New value: +"JSON request body field — hexadecimal color code for the Job Title. Helps with categorization and visual distinction.\n" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / globally_accessible / descriptionPrevious value: -"Controls whether the Job Title is globally available to all current and future Groups."New value: +"JSON request body field — controls whether the Job Title is globally available to all current and future Groups." - changed
Input schema / properties / hourly_rate / descriptionPrevious value: -"Hourly wage rate for the Job Title. Required if type is `hourly`."New value: +"JSON request body field — hourly wage rate for the Job Title. Required if type is `hourly`." - changed
Input schema / properties / job_title_id / descriptionPrevious value: -"Unique identifier for the Job Title."New value: +"URL path parameter — unique identifier for the Job Title." - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the Job Title."New value: +"JSON request body field — name of the Job Title." - changed
Input schema / properties / type / descriptionPrevious value: -"Specifies the Job Title type. - `hourly` - Hourly wage-based job title. - `salaried` - Fixed salary job title.\n"New value: +"JSON request body field — specifies the Job Title type. - `hourly` - Hourly wage-based job title. - `salaried` - Fixed salary job title.\n"
- Added
update_a_line_item_group_of_the_proposal_company - Added
update_a_line_item_group_of_the_proposal_project - Removed
update_a_line_item_group_of_the_proposal_v2_0_company - Removed
update_a_line_item_group_of_the_proposal_v2_0_project - Added
update_a_maintenance_record - Added
update_a_maintenance_record_project - Removed
update_a_maintenance_record_project_v2_0 - Removed
update_a_maintenance_record_v2_0 - Changed
update_a_manual_forecast_line_item9 fields changed- changed
Input schema / properties / amount / descriptionPrevious value: -"Total amount"New value: +"JSON request body field — total amount" - changed
Input schema / properties / budget_line_item_id / descriptionPrevious value: -"Identifier of the parent budget line item. NOTE - budget line item id or wbs code id is required"New value: +"JSON request body field — identifier of the parent budget line item. NOTE - budget line item id or wbs code id is required" - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Budget operation" - changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier for the manual forecast line item."New value: +"URL path parameter — unique identifier for the manual forecast line item." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity / descriptionPrevious value: -"Quantity"New value: +"JSON request body field — the quantity for this Budget operation" - changed
Input schema / properties / unit_cost / descriptionPrevious value: -"Unit cost"New value: +"JSON request body field — the unit cost for this Budget operation" - changed
Input schema / properties / uom / descriptionPrevious value: -"Unit of measure"New value: +"JSON request body field — unit of measure" - changed
Input schema / properties / wbs_code_id / descriptionPrevious value: -"Wbs code id of the parent budget line item. NOTE - budget line item id or wbs code id is required"New value: +"JSON request body field — wbs code id of the parent budget line item. NOTE - budget line item id or wbs code id is required"
- Changed
update_a_manual_hold3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Manual Hold ID"New value: +"URL path parameter — unique identifier of the Invoices resource" - changed
Input schema / properties / invoice_id / descriptionPrevious value: -"Unique identifier of the invoice"New value: +"Query string parameter — unique identifier of the invoice" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
update_a_note_of_the_project_company - Added
update_a_note_of_the_project_company_v2_0 - Removed
update_a_note_of_the_project_v2_0_company - Removed
update_a_note_of_the_project_v2_0_company_v2_0 - Changed
update_a_pdf_template_config_company6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / default_project / descriptionPrevious value: -"set the configs as default to every company's project"New value: +"JSON request body field — set the configs as default to every company's project" - changed
Input schema / properties / description / descriptionPrevious value: -"description of the PdfTemplateConfig"New value: +"JSON request body field — description of the PdfTemplateConfig" - changed
Input schema / properties / id / descriptionPrevious value: -"PDF Template Configs ID"New value: +"URL path parameter — pDF Template Configs ID" - changed
Input schema / properties / pdf_config_options / descriptionPrevious value: -"pdf_config_options"New value: +"JSON request body field — the pdf config options for this Documents operation" - changed
Input schema / properties / template_name / descriptionPrevious value: -"PdfTemplate name"New value: +"JSON request body field — pdfTemplate name"
- Changed
update_a_pdf_template_config_company_v1_06 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / default_project / descriptionPrevious value: -"set the configs as default to every company's project"New value: +"JSON request body field — set the configs as default to every company's project" - changed
Input schema / properties / description / descriptionPrevious value: -"description of the PdfTemplateConfig"New value: +"JSON request body field — description of the PdfTemplateConfig" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the PDF Template Config"New value: +"URL path parameter — iD of the PDF Template Config" - changed
Input schema / properties / pdf_config_options / descriptionPrevious value: -"pdf_config_options"New value: +"JSON request body field — the pdf config options for this Documents operation" - changed
Input schema / properties / template_name / descriptionPrevious value: -"PdfTemplate name"New value: +"JSON request body field — pdfTemplate name"
- Changed
update_a_permission_template_assignment_for_a_user_on_a_project3 fields changed- changed
Input schema / properties / permission_template_id / descriptionPrevious value: -"The ID of the permission template you'd like to assign to the user for the project"New value: +"JSON request body field — the ID of the permission template you'd like to assign to the user for the project" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / user_id / descriptionPrevious value: -"The ID of the user you wish to update the permission template for"New value: +"JSON request body field — the ID of the user you wish to update the permission template for"
- Changed
update_a_person31 fields changed- changed
Input schema / properties / address_1 / descriptionPrevious value: -"First part of the Person's address."New value: +"JSON request body field — first part of the Person's address." - changed
Input schema / properties / address_2 / descriptionPrevious value: -"Second part of the Person's address (e.g., Apartment, Suite, Unit)."New value: +"JSON request body field — second part of the Person's address (e.g., Apartment, Suite, Unit)." - changed
Input schema / properties / can_receive_email / descriptionPrevious value: -"Determines if the Person can receive email notifications."New value: +"JSON request body field — determines if the Person can receive email notifications." - changed
Input schema / properties / can_receive_mobile / descriptionPrevious value: -"Determines if the Person can receive mobile push notifications if they have the app installed."New value: +"JSON request body field — determines if the Person can receive mobile push notifications if they have the app installed." - changed
Input schema / properties / can_receive_sms / descriptionPrevious value: -"Determines if the Person can receive SMS notifications."New value: +"JSON request body field — determines if the Person can receive SMS notifications." - changed
Input schema / properties / city_town / descriptionPrevious value: -"The city or town where the Person is located."New value: +"JSON request body field — the city or town where the Person is located." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / country / descriptionPrevious value: -"The country where the Person is located."New value: +"JSON request body field — the country where the Person is located." - changed
Input schema / properties / dob / descriptionPrevious value: -"Date of birth of the Person. Accepts ISO Date String, UTC Date String, or MS Numeric Epoch Time."New value: +"JSON request body field — date of birth of the Person. Accepts ISO Date String, UTC Date String, or MS Numeric Epoch Time." - changed
Input schema / properties / email / descriptionPrevious value: -"The email that the Person will log in with. **Required if updating `is_user` to `true`**. Must be unique across the company.\n"New value: +"JSON request body field — the email that the Person will log in with. **Required if updating `is_user` to `true`**. Must be unique across the company.\n" - changed
Input schema / properties / emergency_contact_email / descriptionPrevious value: -"Email address of the emergency contact."New value: +"JSON request body field — email address of the emergency contact." - changed
Input schema / properties / emergency_contact_name / descriptionPrevious value: -"Name of the Person's emergency contact."New value: +"JSON request body field — name of the Person's emergency contact." - changed
Input schema / properties / emergency_contact_number / descriptionPrevious value: -"Phone number of the emergency contact."New value: +"JSON request body field — phone number of the emergency contact." - changed
Input schema / properties / emergency_contact_relation / descriptionPrevious value: -"The relationship between the Person and their emergency contact."New value: +"JSON request body field — the relationship between the Person and their emergency contact." - changed
Input schema / properties / employee_number / descriptionPrevious value: -"Internal employee identifier."New value: +"JSON request body field — internal employee identifier." - changed
Input schema / properties / first_name / descriptionPrevious value: -"First Name of the Person."New value: +"JSON request body field — first Name of the Person." - changed
Input schema / properties / group_ids / descriptionPrevious value: -"Array of UUIDs representing the Groups this Person belongs to. **Cannot be empty** for an assignable resource or a non-admin Person.\n"New value: +"JSON request body field — array of UUIDs representing the Groups this Person belongs to. **Cannot be empty** for an assignable resource or a non-admin Person.\n" - changed
Input schema / properties / hired_date / descriptionPrevious value: -"Date the Person was hired. Accepts ISO Date String, UTC Date String, or MS Numeric Epoch Time."New value: +"JSON request body field — date the Person was hired. Accepts ISO Date String, UTC Date String, or MS Numeric Epoch Time." - changed
Input schema / properties / hourly_wage / descriptionPrevious value: -"Hourly wage rate for the Person. Used for automatic spend tracking."New value: +"JSON request body field — hourly wage rate for the Person. Used for automatic spend tracking." - changed
Input schema / properties / is_assignable / descriptionPrevious value: -"Determines if the Person can be assigned to tasks."New value: +"JSON request body field — determines if the Person can be assigned to tasks." - changed
Input schema / properties / is_male / descriptionPrevious value: -"Specifies if the Person identifies as male."New value: +"JSON request body field — specifies if the Person identifies as male." - changed
Input schema / properties / job_title_id / descriptionPrevious value: -"UUID reference to a Job Title in the LaborChart System."New value: +"JSON request body field — uUID reference to a Job Title in the LaborChart System." - changed
Input schema / properties / language / descriptionPrevious value: -"Language preference. Currently only `english` is supported."New value: +"JSON request body field — language preference. Currently only `english` is supported." - changed
Input schema / properties / last_name / descriptionPrevious value: -"Last Name of the Person."New value: +"JSON request body field — last Name of the Person." - changed
Input schema / properties / notification_profile_id / descriptionPrevious value: -"UUID of the Notification Profile for the user."New value: +"JSON request body field — uUID of the Notification Profile for the user." - changed
Input schema / properties / permission_level_id / descriptionPrevious value: -"UUID of the Permission Level assigned to the Person. **Required when setting `is_user: true`**.\n"New value: +"JSON request body field — uUID of the Permission Level assigned to the Person. **Required when setting `is_user: true`**.\n" - changed
Input schema / properties / person_id / descriptionPrevious value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person" - changed
Input schema / properties / phone / descriptionPrevious value: -"The Person's phone number, including country and area code. Must be **unique** among all registered People.\n"New value: +"JSON request body field — the Person's phone number, including country and area code. Must be **unique** among all registered People.\n" - changed
Input schema / properties / state_province / descriptionPrevious value: -"The state or province where the Person is located."New value: +"JSON request body field — the state or province where the Person is located." - changed
Input schema / properties / status / descriptionPrevious value: -"The status of the Person. `active` means the person is visible in all pages, while `inactive` hides the person unless filtered. Inactive People do not count against billing plans.\n"New value: +"JSON request body field — the status of the Person. `active` means the person is visible in all pages, while `inactive` hides the person unless filtered. Inactive People do not count against billing plans.\n" - changed
Input schema / properties / zipcode / descriptionPrevious value: -"The postal/zip code of the Person."New value: +"JSON request body field — the postal/zip code of the Person."
- Changed
update_a_private_field_in_company_level_email_communication3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Communication ID"New value: +"URL path parameter — unique identifier of the Emails resource" - changed
Input schema / properties / private / descriptionPrevious value: -"Private Indicator"New value: +"JSON request body field — private Indicator"
- Changed
update_a_private_field_in_email_communication3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Communication ID"New value: +"URL path parameter — unique identifier of the Emails resource" - changed
Input schema / properties / private / descriptionPrevious value: -"Private Indicator"New value: +"JSON request body field — private Indicator" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
update_a_proposal_of_the_project_company - Added
update_a_proposal_of_the_project_company_v2_0 - Removed
update_a_proposal_of_the_project_v2_0_company - Removed
update_a_proposal_of_the_project_v2_0_company_v2_0 - Changed
update_a_response4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / corresponding_status / descriptionPrevious value: -"Item Status that the Response corresponds to"New value: +"JSON request body field — item Status that the Response corresponds to" - changed
Input schema / properties / id / descriptionPrevious value: -"The ID of the Response"New value: +"URL path parameter — the ID of the Response" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the Response"New value: +"JSON request body field — name of the Response"
- Changed
update_a_single_group14 fields changed- changed
Input schema / properties / address_1 / descriptionPrevious value: -"The first part of the Group's address."New value: +"JSON request body field — the first part of the Group's address." - changed
Input schema / properties / address_2 / descriptionPrevious value: -"The second part of the Group's address (e.g., Apartment, Suite, Unit)."New value: +"JSON request body field — the second part of the Group's address (e.g., Apartment, Suite, Unit)." - changed
Input schema / properties / city_town / descriptionPrevious value: -"The City or Town for the Group."New value: +"JSON request body field — the City or Town for the Group." - changed
Input schema / properties / color / descriptionPrevious value: -"Hexadecimal color code for the Group. Can be helpful for categorization. Example: #53A9FF.\n"New value: +"JSON request body field — hexadecimal color code for the Group. Can be helpful for categorization. Example: #53A9FF.\n" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / contact_email / descriptionPrevious value: -"Email address for the Group's Point of Contact."New value: +"JSON request body field — email address for the Group's Point of Contact." - changed
Input schema / properties / contact_name / descriptionPrevious value: -"The Point of Contact (P.O.C.) name for the Group."New value: +"JSON request body field — the Point of Contact (P.O.C.) name for the Group." - changed
Input schema / properties / contact_phone / descriptionPrevious value: -"Phone number for the Group's Point of Contact. Must include country and area code.\n"New value: +"JSON request body field — phone number for the Group's Point of Contact. Must include country and area code.\n" - changed
Input schema / properties / country / descriptionPrevious value: -"The Country for the Group."New value: +"JSON request body field — the Country for the Group." - changed
Input schema / properties / group_id / descriptionPrevious value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group" - changed
Input schema / properties / name / descriptionPrevious value: -"Group Name."New value: +"JSON request body field — group Name." - changed
Input schema / properties / state_province / descriptionPrevious value: -"The State or Province for the Group."New value: +"JSON request body field — the State or Province for the Group." - changed
Input schema / properties / timezone / descriptionPrevious value: -"The default Timezone for scheduling outbound messages from projects in this group that don't specify their own Timezone. Example format: America/Chicago.\n"New value: +"JSON request body field — the default Timezone for scheduling outbound messages from projects in this group that don't specify their own Timezone. Example format: America/Chicago.\n" - changed
Input schema / properties / zipcode / descriptionPrevious value: -"Zip or Postal Code for the Group."New value: +"JSON request body field — zip or Postal Code for the Group."
- Changed
update_a_single_project10 fields changed- changed
Input schema / properties / color / descriptionPrevious value: -"Hexadecimal color code for the Project. Helps with categorization and visual distinction.\n"New value: +"JSON request body field — hexadecimal color code for the Project. Helps with categorization and visual distinction.\n" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / daily_end_time / descriptionPrevious value: -"Default time the Project's workday ends. Must follow `HH:MM am/pm` format. Allowed increments: 15 minutes.\n"New value: +"JSON request body field — default time the Project's workday ends. Must follow `HH:MM am/pm` format. Allowed increments: 15 minutes.\n" - changed
Input schema / properties / daily_start_time / descriptionPrevious value: -"Default time the Project's workday begins. Must follow `HH:MM am/pm` format. Allowed increments: 15 minutes.\n"New value: +"JSON request body field — default time the Project's workday begins. Must follow `HH:MM am/pm` format. Allowed increments: 15 minutes.\n" - changed
Input schema / properties / job_title_id / descriptionPrevious value: -"UUID of the Job Title for the Role. If omitted, the Person's default Job Title is used.\n"New value: +"JSON request body field — uUID of the Job Title for the Role. If omitted, the Person's default Job Title is used.\n" - changed
Input schema / properties / name / descriptionPrevious value: -"The name of the Project."New value: +"JSON request body field — the name of the Project." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project" - changed
Input schema / properties / start_date / descriptionPrevious value: -"Project's start date. Required if `status` is `active`."New value: +"JSON request body field — project's start date. Required if `status` is `active`." - changed
Input schema / properties / status / descriptionPrevious value: -"Controls Project visibility and filtering. `active` - Project is currently in progress. `pending` - Project is planned but not started. `inactive` - Project is no longer active.\n"New value: +"JSON request body field — controls Project visibility and filtering. `active` - Project is currently in progress. `pending` - Project is planned but not started. `inactive` - Project is no longer active.\n" - changed
Input schema / properties / timezone / descriptionPrevious value: -"The timezone to use for scheduling outbound messages for the Project. If not provided, the Group timezone will be used.\n"New value: +"JSON request body field — the timezone to use for scheduling outbound messages for the Project. If not provided, the Group timezone will be used.\n"
- Changed
update_a_single_resource_request14 fields changed- changed
Input schema / properties / category_id / descriptionPrevious value: -"UUID of the Project Category."New value: +"JSON request body field — uUID of the Project Category." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / end_day / descriptionPrevious value: -"The last day the requested resource is needed (ISO 8601)."New value: +"JSON request body field — the last day the requested resource is needed (ISO 8601)." - changed
Input schema / properties / end_time / descriptionPrevious value: -"End time of the request (HH:MM am/pm format)."New value: +"JSON request body field — end time of the request (HH:MM am/pm format)." - changed
Input schema / properties / instruction_text / descriptionPrevious value: -"Instructions for the Resource Request."New value: +"JSON request body field — instructions for the Resource Request." - changed
Input schema / properties / job_title_id / descriptionPrevious value: -"Job Title UUID for this request."New value: +"JSON request body field — job Title UUID for this request." - changed
Input schema / properties / percent_allocated / descriptionPrevious value: -"Allocation percentage if the request is not hour-based."New value: +"JSON request body field — allocation percentage if the request is not hour-based." - changed
Input schema / properties / request_id / descriptionPrevious value: -"Unique identifier for the Resource Request."New value: +"URL path parameter — unique identifier for the Resource Request." - changed
Input schema / properties / start_day / descriptionPrevious value: -"The first day the requested resource is needed (ISO 8601)."New value: +"JSON request body field — the first day the requested resource is needed (ISO 8601)." - changed
Input schema / properties / start_time / descriptionPrevious value: -"Start time of the request (HH:MM am/pm format)."New value: +"JSON request body field — start time of the request (HH:MM am/pm format)." - changed
Input schema / properties / state_id / descriptionPrevious value: -"UUID of the Assignment State."New value: +"JSON request body field — uUID of the Assignment State." - changed
Input schema / properties / subcategory_id / descriptionPrevious value: -"UUID of the Project Subcategory."New value: +"JSON request body field — uUID of the Project Subcategory." - changed
Input schema / properties / work_days / descriptionPrevious value: -"Object to control working days (Sunday - Saturday as 0-6 index)."New value: +"JSON request body field — object to control working days (Sunday - Saturday as 0-6 index)." - changed
Input schema / properties / work_scope_text / descriptionPrevious value: -"Scope of Work for the Resource Request."New value: +"JSON request body field — scope of Work for the Resource Request."
- Changed
update_a_task_item_comment12 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / comment / descriptionPrevious value: -"The message of the comment"New value: +"JSON request body field — the message of the comment" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / document_management_document_revision_ids / descriptionPrevious value: -"PDM document to attach to the response"New value: +"JSON request body field — pDM document to attach to the response" - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / id / descriptionPrevious value: -"Task Item Comment ID"New value: +"URL path parameter — task Item Comment ID" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / status / descriptionPrevious value: -"The status of the task item at the time the comment.\nStandard users who are assigned to a task item cannot change the status to closed or void."New value: +"JSON request body field — the status of the task item at the time the comment.\nStandard users who are assigned to a task item cannot change the status to closed or void." - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
- Changed
update_a_time_and_material_entry19 fields changed- changed
Input schema / properties / company_signature_id / descriptionPrevious value: -"The ID associate with company's signature"New value: +"JSON request body field — the ID associate with company's signature" - changed
Input schema / properties / company_signee_party_id / descriptionPrevious value: -"The ID associate with company's signature party"New value: +"JSON request body field — the ID associate with company's signature party" - changed
Input schema / properties / customer_signature_id / descriptionPrevious value: -"The ID associate with customer's signature"New value: +"JSON request body field — the ID associate with customer's signature" - changed
Input schema / properties / customer_signee_party_id / descriptionPrevious value: -"The ID associate with customer's signature party"New value: +"JSON request body field — the ID associate with customer's signature party" - changed
Input schema / properties / description / descriptionPrevious value: -"The description of job"New value: +"JSON request body field — the description of job" - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Time And Material Entry"New value: +"URL path parameter — id of the Time And Material Entry" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / name / descriptionPrevious value: -"The title of T&M ticket"New value: +"JSON request body field — the title of T&M ticket" - changed
Input schema / properties / number / descriptionPrevious value: -"Unique number for the T&M ticket"New value: +"JSON request body field — unique number for the T&M ticket" - changed
Input schema / properties / private / descriptionPrevious value: -"If the T&M ticket is private"New value: +"JSON request body field — if the T&M ticket is private" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / reference_number / descriptionPrevious value: -"The refrence number associate with T&M ticket"New value: +"JSON request body field — the refrence number associate with T&M ticket" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / status / descriptionPrevious value: -"Current status of T&M ticket"New value: +"JSON request body field — current status of T&M ticket" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"The specified array of upload ids is saved as Time And Material Entry Attachments."New value: +"JSON request body field — the specified array of upload ids is saved as Time And Material Entry Attachments." - changed
Input schema / properties / work_performed_on_date / descriptionPrevious value: -"Date work performed on"New value: +"JSON request body field — date work performed on"
- Changed
update_a_time_and_material_equipment_log7 fields changed- changed
Input schema / properties / description / descriptionPrevious value: -"Description of Time And Material Equipment Log"New value: +"JSON request body field — description of Time And Material Equipment Log" - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Time And Material Equipment Log"New value: +"URL path parameter — id of the Time And Material Equipment Log" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity / descriptionPrevious value: -"Quantity of Time And Material Equipment Log"New value: +"JSON request body field — quantity of Time And Material Equipment Log" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / time_and_material_entry_id / descriptionPrevious value: -"Time & Material Entry Id of Time And Material Equipment Log"New value: +"JSON request body field — time & Material Entry Id of Time And Material Equipment Log" - changed
Input schema / properties / uom / descriptionPrevious value: -"Unit of measure for Time And Material Equipment Log"New value: +"JSON request body field — unit of measure for Time And Material Equipment Log"
- Changed
update_a_time_and_material_notification12 fields changed- changed
Input schema / properties / closed / descriptionPrevious value: -"closed"New value: +"JSON request body field — the closed for this Field Productivity operation" - changed
Input schema / properties / company_signed / descriptionPrevious value: -"company_signed"New value: +"JSON request body field — the company signed for this Field Productivity operation" - changed
Input schema / properties / creation / descriptionPrevious value: -"creation"New value: +"JSON request body field — the creation for this Field Productivity operation" - changed
Input schema / properties / customer_signed / descriptionPrevious value: -"customer_signed"New value: +"JSON request body field — the customer signed for this Field Productivity operation" - changed
Input schema / properties / group_equipment_totals_by / descriptionPrevious value: -"Grouping configurations for T&M Equipment push to Change Management"New value: +"JSON request body field — grouping configurations for T&M Equipment push to Change Management" - changed
Input schema / properties / group_labor_totals_by / descriptionPrevious value: -"Grouping configurations for T&M Labor push to Change Management"New value: +"JSON request body field — grouping configurations for T&M Labor push to Change Management" - changed
Input schema / properties / notify_dl_on_closed / descriptionPrevious value: -"notify_dl_on_closed"New value: +"JSON request body field — the notify dl on closed for this Field Productivity operation" - changed
Input schema / properties / notify_dl_on_company_signed / descriptionPrevious value: -"notify_dl_on_company_signed"New value: +"JSON request body field — notify_dl_on_company_signed" - changed
Input schema / properties / notify_dl_on_creation / descriptionPrevious value: -"notify_dl_on_creation"New value: +"JSON request body field — notify_dl_on_creation" - changed
Input schema / properties / notify_dl_on_customer_signed / descriptionPrevious value: -"notify_dl_on_customer_signed"New value: +"JSON request body field — notify_dl_on_customer_signed" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
update_a_time_off_record11 fields changed- changed
Input schema / properties / apply_to_saturday / descriptionPrevious value: -"Whether the time off applies to Saturdays."New value: +"JSON request body field — whether the time off applies to Saturdays." - changed
Input schema / properties / apply_to_sunday / descriptionPrevious value: -"Whether the time off applies to Sundays."New value: +"JSON request body field — whether the time off applies to Sundays." - changed
Input schema / properties / batch_end_time / descriptionPrevious value: -"End time of the time off (formatted as HH:MM am/pm)."New value: +"JSON request body field — end time of the time off (formatted as HH:MM am/pm)." - changed
Input schema / properties / batch_start_time / descriptionPrevious value: -"Start time of the time off (formatted as HH:MM am/pm)."New value: +"JSON request body field — start time of the time off (formatted as HH:MM am/pm)." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / end_day / descriptionPrevious value: -"End date of the time off (MM/DD/YY)."New value: +"JSON request body field — end date of the time off (MM/DD/YY)." - changed
Input schema / properties / is_paid / descriptionPrevious value: -"Whether the time off is paid."New value: +"JSON request body field — whether the time off is paid." - changed
Input schema / properties / person_id / descriptionPrevious value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person" - changed
Input schema / properties / reason / descriptionPrevious value: -"Reason for the time off."New value: +"JSON request body field — reason for the time off." - changed
Input schema / properties / start_day / descriptionPrevious value: -"Start date of the time off (MM/DD/YY)."New value: +"JSON request body field — start date of the time off (MM/DD/YY)." - changed
Input schema / properties / time_off_id / descriptionPrevious value: -"The UUID of the Time Off record."New value: +"URL path parameter — the UUID of the Time Off record."
- Changed
update_a_wbs_code4 fields changed- changed
Input schema / properties / description / descriptionPrevious value: -"New custom description of the WBS Code"New value: +"JSON request body field — new custom description of the WBS Code" - changed
Input schema / properties / id / descriptionPrevious value: -"WBS Code ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / status / descriptionPrevious value: -"New status of the WBS Code"New value: +"JSON request body field — new status of the WBS Code"
- Changed
update_accident_log4 fields changed- changed
Input schema / properties / accident_log / descriptionPrevious value: -"accident_log"New value: +"JSON request body field — the accident log for this Daily Log operation" - changed
Input schema / properties / attachments / descriptionPrevious value: -"Accident Log Attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — accident Log Attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / id / descriptionPrevious value: -"Accident log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
update_action12 fields changed- changed
Input schema / properties / action_type_id / descriptionPrevious value: -"The ID of the Action Type"New value: +"JSON request body field — the ID of the Action Type" - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"Description of action taken in rich text form."New value: +"JSON request body field — description of action taken in rich text form." - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / id / descriptionPrevious value: -"Action ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"The ID of the Incident"New value: +"JSON request body field — the ID of the Incident" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"Whether or not Configurable validations from the Incident/Injury Configurable Field Set should be run (default: false).\nSee (https://developers.procore.com/reference/configurable-field-sets#list-pr..."New value: +"Query string parameter — whether or not Configurable validations from the Incident/Injury Configurable Field Set should be run (default: false).\nSee (https://developers.procore.com/reference/configurable-field-sets#list-pr..." - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
- Changed
update_action_plan12 fields changed- changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"Description of the Action Plan"New value: +"JSON request body field — description of the Action Plan" - changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan ID"New value: +"URL path parameter — unique identifier of the Action Plans resource" - changed
Input schema / properties / location_id / descriptionPrevious value: -"Location ID to be set on the Action Plan"New value: +"JSON request body field — location ID to be set on the Action Plan" - changed
Input schema / properties / manager_id / descriptionPrevious value: -"Party Person ID of the Action Plan Manager"New value: +"JSON request body field — party Person ID of the Action Plan Manager" - changed
Input schema / properties / plan_approvers_attributes / descriptionPrevious value: -"plan_approvers_attributes"New value: +"JSON request body field — plan_approvers_attributes" - changed
Input schema / properties / plan_receivers_attributes / descriptionPrevious value: -"plan_receivers_attributes"New value: +"JSON request body field — plan_receivers_attributes" - changed
Input schema / properties / plan_type_id / descriptionPrevious value: -"Plan Type ID to be set on the Action Plan"New value: +"JSON request body field — plan Type ID to be set on the Action Plan" - changed
Input schema / properties / private / descriptionPrevious value: -"Privacy flag of the Action Plan"New value: +"JSON request body field — privacy flag of the Action Plan" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / status_id / descriptionPrevious value: -"Action Plan Status ID to be set on the Action Plan"New value: +"JSON request body field — action Plan Status ID to be set on the Action Plan" - changed
Input schema / properties / title / descriptionPrevious value: -"Title of the Action Plan"New value: +"JSON request body field — title of the Action Plan"
- Changed
update_action_plan_item8 fields changed- changed
Input schema / properties / description / descriptionPrevious value: -"Description of the Action Plan Item"New value: +"JSON request body field — description of the Action Plan Item" - changed
Input schema / properties / due_at / descriptionPrevious value: -"Due Date of the Action Plan Item"New value: +"JSON request body field — due Date of the Action Plan Item" - changed
Input schema / properties / holding_type / descriptionPrevious value: -"Action Plan Item holding type specifies whether the current item holds all the succeeding items in the section or the plan"New value: +"JSON request body field — action Plan Item holding type specifies whether the current item holds all the succeeding items in the section or the plan" - changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Item ID"New value: +"URL path parameter — unique identifier of the Action Plans resource" - changed
Input schema / properties / notes / descriptionPrevious value: -"Notes for the Action Plan Item"New value: +"JSON request body field — notes for the Action Plan Item" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / status_id / descriptionPrevious value: -"Status ID of the Action Plan Item (1 - open, 2 - in_progress, 3 - delayed, 4 - closed)"New value: +"JSON request body field — status ID of the Action Plan Item (1 - open, 2 - in_progress, 3 - delayed, 4 - closed)" - changed
Input schema / properties / title / descriptionPrevious value: -"Title of the Action Plan Item"New value: +"JSON request body field — title of the Action Plan Item"
- Changed
update_action_plan_item_assignee5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Item Assignee ID"New value: +"URL path parameter — action Plan Item Assignee ID" - changed
Input schema / properties / is_holding / descriptionPrevious value: -"Indicates whether or not the Action Plan Item Assignee's signature is holding"New value: +"JSON request body field — indicates whether or not the Action Plan Item Assignee's signature is holding" - changed
Input schema / properties / party_id / descriptionPrevious value: -"Party Person ID of the Action Plan Item Assignee to be set"New value: +"JSON request body field — party Person ID of the Action Plan Item Assignee to be set" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / verification_method_id / descriptionPrevious value: -"Verification Method ID of the Action Plan Item Assignee to be set"New value: +"JSON request body field — verification Method ID of the Action Plan Item Assignee to be set"
- Changed
update_action_plan_section4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Section ID"New value: +"URL path parameter — action Plan Section ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / title / descriptionPrevious value: -"Title"New value: +"JSON request body field — the title for this Action Plans operation" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view (which attributes) of the Action Plan Section is going to be present in the response.\n- `normal` (default): Returns standard Action Plan Section attributes\n- `extended`: Return..."New value: +"Query string parameter — specifies which view (which attributes) of the Action Plan Section is going to be present in the response.\n- `normal` (default): Returns standard Action Plan Section attributes\n- `extended`: Return..."
- Changed
update_action_plan_verification_method3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Specifies if the Action Plan Verification Method is intended for use"New value: +"JSON request body field — specifies if the Action Plan Verification Method is intended for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Verification Method ID"New value: +"URL path parameter — action Plan Verification Method ID"
- Changed
update_actual_production_quantity6 fields changed- changed
Input schema / properties / crew_id / descriptionPrevious value: -"The ID of the crew for the Actual Production Quantity"New value: +"JSON request body field — the ID of the crew for the Actual Production Quantity" - changed
Input schema / properties / description / descriptionPrevious value: -"The description of the Actual Production Quantity"New value: +"JSON request body field — the description of the Actual Production Quantity" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / location_id / descriptionPrevious value: -"The Location ID for the Actual Production Quantity"New value: +"JSON request body field — the Location ID for the Actual Production Quantity" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity / descriptionPrevious value: -"Amount installed"New value: +"JSON request body field — amount installed"
- Changed
update_advance_ball_in_court2 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"RFI ID"New value: +"URL path parameter — unique identifier of the RFI resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
update_advance_ball_in_court_v1_1 - Added
update_advanced_forecasting_rows - Removed
update_advanced_forecasting_rows_v2_0 - Changed
update_affliction_type4 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Affliction Type is available for use"New value: +"JSON request body field — flag that denotes if the Affliction Type is available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Affliction Type ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Affliction Type"New value: +"JSON request body field — the Name of the Affliction Type"
- Changed
update_all_classification2 fields changed- changed
Input schema / properties / is_active / descriptionPrevious value: -"Is the classifications active or not"New value: +"JSON request body field — is the classifications active or not" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
update_all_company_segment_items4 fields changed- changed
Input schema / properties / attributes / descriptionPrevious value: -"attributes"New value: +"JSON request body field — the attributes for this Work Breakdown Structure operation" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / ids / descriptionPrevious value: -"List of segment item IDs. The API will find and update the children of the provided IDs."New value: +"JSON request body field — list of segment item IDs. The API will find and update the children of the provided IDs." - changed
Input schema / properties / segment_id / descriptionPrevious value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment"
- Changed
update_all_project_segment_items4 fields changed- changed
Input schema / properties / attributes / descriptionPrevious value: -"attributes"New value: +"JSON request body field — the attributes for this Work Breakdown Structure operation" - changed
Input schema / properties / ids / descriptionPrevious value: -"List of segment item IDs. The API will find and update the children of the provided IDs."New value: +"JSON request body field — list of segment item IDs. The API will find and update the children of the provided IDs." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / segment_id / descriptionPrevious value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment"
- Changed
update_an_equipment16 fields changed- changed
Input schema / properties / company_visible / descriptionPrevious value: -"Company visible"New value: +"JSON request body field — the company visible for this Field Productivity operation" - changed
Input schema / properties / current_project_id / descriptionPrevious value: -"ID of the project the equipment is currently dispatched to"New value: +"JSON request body field — iD of the project the equipment is currently dispatched to" - changed
Input schema / properties / description / descriptionPrevious value: -"description of the equipment"New value: +"JSON request body field — description of the equipment" - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the equipment"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / identification_number / descriptionPrevious value: -"Identification number of the equipment"New value: +"JSON request body field — identification number of the equipment" - changed
Input schema / properties / managed_equipment_category_id / descriptionPrevious value: -"ID of the equipment category"New value: +"JSON request body field — iD of the equipment category" - changed
Input schema / properties / managed_equipment_make_id / descriptionPrevious value: -"ID of the equipment make"New value: +"JSON request body field — iD of the equipment make" - changed
Input schema / properties / managed_equipment_model_id / descriptionPrevious value: -"ID of the equipment model"New value: +"JSON request body field — iD of the equipment model" - changed
Input schema / properties / managed_equipment_type_id / descriptionPrevious value: -"ID of the equipment type"New value: +"JSON request body field — iD of the equipment type" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the equipment"New value: +"JSON request body field — name of the equipment" - changed
Input schema / properties / ownership / descriptionPrevious value: -"The type of ownership"New value: +"JSON request body field — the type of ownership" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / serial_number / descriptionPrevious value: -"Serial number of the equipment"New value: +"JSON request body field — serial number of the equipment" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Field Productivity operation" - changed
Input schema / properties / upload_uuids / descriptionPrevious value: -"Array of upload uuids"New value: +"JSON request body field — array of upload uuids" - changed
Input schema / properties / year / descriptionPrevious value: -"Year the equipment was manufactured in"New value: +"JSON request body field — year the equipment was manufactured in"
- Changed
update_an_equipment_make4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the equipment make"New value: +"URL path parameter — iD of the equipment make" - changed
Input schema / properties / is_active / descriptionPrevious value: -"Equipment make is active if true"New value: +"JSON request body field — equipment make is active if true" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the equipment make"New value: +"JSON request body field — name of the equipment make"
- Changed
update_an_equipment_model6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the company to get the models for"New value: +"URL path parameter — iD of the company to get the models for" - changed
Input schema / properties / is_active / descriptionPrevious value: -"If the equipment model is active"New value: +"JSON request body field — if the equipment model is active" - changed
Input schema / properties / managed_equipment_make_id / descriptionPrevious value: -"Equipment make ID the model is associated to"New value: +"JSON request body field — equipment make ID the model is associated to" - changed
Input schema / properties / managed_equipment_type_id / descriptionPrevious value: -"Equipment type ID the model is associated to"New value: +"JSON request body field — equipment type ID the model is associated to" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the equipment model"New value: +"JSON request body field — name of the equipment model"
- Changed
update_an_equipment_type5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the company to get the types for"New value: +"URL path parameter — iD of the company to get the types for" - changed
Input schema / properties / is_active / descriptionPrevious value: -"If the equipment model is active"New value: +"JSON request body field — if the equipment model is active" - changed
Input schema / properties / managed_equipment_category_id / descriptionPrevious value: -"Equipment category ID the type is associated to"New value: +"JSON request body field — equipment category ID the type is associated to" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the equipment Type"New value: +"JSON request body field — name of the equipment Type"
- Added
update_an_estimate_line_item_of_the_proposal_company - Added
update_an_estimate_line_item_of_the_proposal_project - Removed
update_an_estimate_line_item_of_the_proposal_v2_0_company - Removed
update_an_estimate_line_item_of_the_proposal_v2_0_project - Changed
update_an_project_equipment_log9 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the company to get the logs for"New value: +"URL path parameter — iD of the company to get the logs for" - changed
Input schema / properties / induction_checklist_list_id / descriptionPrevious value: -"Id of the inspection list the equipment uses"New value: +"JSON request body field — id of the inspection list the equipment uses" - changed
Input schema / properties / induction_number / descriptionPrevious value: -"The number used for equipment induction"New value: +"JSON request body field — the number used for equipment induction" - changed
Input schema / properties / induction_status / descriptionPrevious value: -"Indicates if the equipemnt has been successfully inspected and allowed to perform work"New value: +"JSON request body field — indicates if the equipemnt has been successfully inspected and allowed to perform work" - changed
Input schema / properties / inspection_date / descriptionPrevious value: -"The date the equipment was inspected"New value: +"JSON request body field — the date the equipment was inspected" - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"Equipment Id the log is associated with"New value: +"JSON request body field — equipment Id the log is associated with" - changed
Input schema / properties / offsite / descriptionPrevious value: -"The Date equipment left the site"New value: +"JSON request body field — the Date equipment left the site" - changed
Input schema / properties / onsite / descriptionPrevious value: -"The Date equipment arrived on site"New value: +"JSON request body field — the Date equipment arrived on site" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project the equipment was logged for"New value: +"JSON request body field — iD of the project the equipment was logged for"
- Changed
update_app_configuration5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"App Configuration ID"New value: +"URL path parameter — app Configuration ID" - changed
Input schema / properties / instance_configuration / descriptionPrevious value: -"Configuration values for an configuration of an app installation."New value: +"JSON request body field — configuration values for an configuration of an app installation." - changed
Input schema / properties / project_ids / descriptionPrevious value: -"A list of projects which will have the app configuration"New value: +"JSON request body field — a list of projects which will have the app configuration" - changed
Input schema / properties / title / descriptionPrevious value: -"Title for app configuration"New value: +"JSON request body field — title for app configuration"
- Changed
update_app_installation5 fields changed- changed
Input schema / properties / app_installation / descriptionPrevious value: -"app_installation"New value: +"JSON request body field — the app installation for this App Marketplace operation" - changed
Input schema / properties / app_uid / descriptionPrevious value: -"Third party application UID"New value: +"JSON request body field — third party application UID" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Company ID. Note: Only one of project_id or company_id is required."New value: +"JSON request body field — company ID. Note: Only one of project_id or company_id is required." - changed
Input schema / properties / id / descriptionPrevious value: -"App installation ID"New value: +"URL path parameter — unique identifier of the App Marketplace resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Project ID. Note: Only one of project_id or company_id is required."New value: +"JSON request body field — project ID. Note: Only one of project_id or company_id is required."
- Added
update_assignees_and_workflow_manager_company - Removed
update_assignees_and_workflow_manager_company_v2_0 - Added
update_assignees_and_workflow_manager_project - Removed
update_assignees_and_workflow_manager_project_v2_0 - Added
update_bid_board_project - Added
update_bid_board_project_custom_field - Removed
update_bid_board_project_custom_field_v2_0 - Removed
update_bid_board_project_v2_0 - Changed
update_bid_form11 fields changed- changed
Input schema / properties / alternates / descriptionPrevious value: -"Alternate bids"New value: +"JSON request body field — alternate bids" - changed
Input schema / properties / base_bid / descriptionPrevious value: -"Base Bids"New value: +"JSON request body field — base Bids" - changed
Input schema / properties / bid_form_id / descriptionPrevious value: -"Bid Form ID"New value: +"URL path parameter — unique identifier of the bid form" - changed
Input schema / properties / bid_package_id / descriptionPrevious value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package" - added
Input schema / properties / lock_quantity_fields_alternatesAdded value: +{ + "description": "JSON request body field — lock quantity fields for all alternate items", + "type": "boolean" +} - added
Input schema / properties / lock_quantity_fields_base_bidAdded value: +{ + "description": "JSON request body field — lock quantity fields for all base bid items", + "type": "boolean" +} - added
Input schema / properties / lock_unit_fields_alternatesAdded value: +{ + "description": "JSON request body field — lock unit fields for all alternate items", + "type": "boolean" +} - added
Input schema / properties / lock_unit_fields_base_bidAdded value: +{ + "description": "JSON request body field — lock unit fields for all base bid items", + "type": "boolean" +} - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - added
Input schema / properties / proposal_idAdded value: +{ + "description": "JSON request body field — unique identifier of the proposal", + "type": "number" +} - changed
Input schema / properties / title / descriptionPrevious value: -"Bid Form Title"New value: +"JSON request body field — bid Form Title"
- Removed
update_bid_form_v1_1 - Changed
update_bid_package32 fields changed- changed
Input schema / properties / accept_post_due_submissions / descriptionPrevious value: -"Accepts bid post due submissions"New value: +"JSON request body field — accepts bid post due submissions" - changed
Input schema / properties / accounting_method / descriptionPrevious value: -"Bid package accounting method, either 'amount' or 'unit'"New value: +"JSON request body field — bid package accounting method, either 'amount' or 'unit'" - changed
Input schema / properties / anticipated_award_date / descriptionPrevious value: -"Anticipated award date"New value: +"JSON request body field — anticipated award date" - changed
Input schema / properties / bid_due_date / descriptionPrevious value: -"Due date"New value: +"JSON request body field — bid due date in YYYY-MM-DD format" - changed
Input schema / properties / bid_email_message / descriptionPrevious value: -"Bid package email information details"New value: +"JSON request body field — bid package email information details" - changed
Input schema / properties / bid_submission_confirmation / descriptionPrevious value: -"Bid Package submission confirmation text"New value: +"JSON request body field — bid Package submission confirmation text" - changed
Input schema / properties / bid_web_message / descriptionPrevious value: -"Bid package bidding instructions"New value: +"JSON request body field — bid package bidding instructions" - changed
Input schema / properties / blind_bidding / descriptionPrevious value: -"Blind bidding enabled"New value: +"JSON request body field — blind bidding enabled" - changed
Input schema / properties / business_classifications / descriptionPrevious value: -"Array of business classifications"New value: +"JSON request body field — array of business classifications" - changed
Input schema / properties / display_project_name / descriptionPrevious value: -"Display project name"New value: +"JSON request body field — display project name" - changed
Input schema / properties / distribution_ids / descriptionPrevious value: -"Array of User IDs who will be on the bid package's distribution list"New value: +"JSON request body field — array of User IDs who will be on the bid package's distribution list" - changed
Input schema / properties / enable_prebid_walkthrough / descriptionPrevious value: -"Pre-bid walkthrough enabled"New value: +"JSON request body field — pre-bid walkthrough enabled" - changed
Input schema / properties / enable_public_discovery / descriptionPrevious value: -"Whether the bid package is discoverable by the public"New value: +"JSON request body field — whether the bid package is discoverable by the public" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Bid Management resource" - changed
Input schema / properties / manager_id / descriptionPrevious value: -"Login Information ID for Manager"New value: +"JSON request body field — login Information ID for Manager" - changed
Input schema / properties / number / descriptionPrevious value: -"Bid package number"New value: +"JSON request body field — bid package number" - changed
Input schema / properties / pre_bid_meeting_date / descriptionPrevious value: -"Date and time for the pre-bid meeting in UTC (ISO 8601 format)"New value: +"JSON request body field — date and time for the pre-bid meeting in UTC (ISO 8601 format)" - changed
Input schema / properties / pre_bid_meeting_location / descriptionPrevious value: -"Location for the pre-bid meeting"New value: +"JSON request body field — location for the pre-bid meeting" - changed
Input schema / properties / pre_bid_meeting_notes / descriptionPrevious value: -"Notes for the pre-bid meeting"New value: +"JSON request body field — notes for the pre-bid meeting" - changed
Input schema / properties / pre_bid_meeting_online_link / descriptionPrevious value: -"Online meeting link for the pre-bid meeting"New value: +"JSON request body field — online meeting link for the pre-bid meeting" - changed
Input schema / properties / pre_bid_walk_through_date / descriptionPrevious value: -"Scheduled pre-bid walkthrough date"New value: +"JSON request body field — scheduled pre-bid walkthrough date" - changed
Input schema / properties / pre_bid_walk_through_notes / descriptionPrevious value: -"Pre-bid walkthrough notes"New value: +"JSON request body field — pre-bid walkthrough notes" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / prostore_file_ids / descriptionPrevious value: -"Array of Procore File IDs for Non-Disclosure Agreement"New value: +"JSON request body field — array of Procore File IDs for Non-Disclosure Agreement" - changed
Input schema / properties / public_bid_opening_details_date / descriptionPrevious value: -"Date and time for the public bid opening in UTC (ISO 8601 format)"New value: +"JSON request body field — date and time for the public bid opening in UTC (ISO 8601 format)" - changed
Input schema / properties / public_bid_opening_details_location / descriptionPrevious value: -"Location for the public bid opening"New value: +"JSON request body field — location for the public bid opening" - changed
Input schema / properties / public_bid_opening_details_online_link / descriptionPrevious value: -"Online link for the public bid opening"New value: +"JSON request body field — online link for the public bid opening" - changed
Input schema / properties / public_project_funding_source / descriptionPrevious value: -"Source of funding for the public project, either 'private' or 'public'"New value: +"JSON request body field — source of funding for the public project, either 'private' or 'public'" - changed
Input schema / properties / require_nda / descriptionPrevious value: -"Require Non-Disclosure Agreement"New value: +"JSON request body field — require Non-Disclosure Agreement" - changed
Input schema / properties / show_location_for_nda_projects / descriptionPrevious value: -"Whether the location for the NDA project is shown"New value: +"JSON request body field — whether the location for the NDA project is shown" - changed
Input schema / properties / title / descriptionPrevious value: -"Bid package title"New value: +"JSON request body field — bid package title" - changed
Input schema / properties / trades_and_services / descriptionPrevious value: -"Array of trades and services"New value: +"JSON request body field — array of trades and services"
- Changed
update_billing_period6 fields changed- changed
Input schema / properties / due_date / descriptionPrevious value: -"Due date"New value: +"JSON request body field — due date in YYYY-MM-DD format" - changed
Input schema / properties / end_date / descriptionPrevious value: -"End date"New value: +"JSON request body field — the end date in YYYY-MM-DD format" - changed
Input schema / properties / id / descriptionPrevious value: -"Billing Period ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start date"New value: +"JSON request body field — the start date in YYYY-MM-DD format" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Commitments operation"
- Changed
update_bim_file3 fields changed- changed
Input schema / properties / bim_file / descriptionPrevious value: -"BIM File Item object"New value: +"JSON request body field — bIM File Item object" - changed
Input schema / properties / id / descriptionPrevious value: -"BIM File ID"New value: +"URL path parameter — unique identifier of the BIM resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
update_bim_level3 fields changed- changed
Input schema / properties / bim_level / descriptionPrevious value: -"BIM Level Item object"New value: +"JSON request body field — bIM Level Item object" - changed
Input schema / properties / id / descriptionPrevious value: -"BIM Level ID"New value: +"URL path parameter — unique identifier of the BIM resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
update_bim_model3 fields changed- changed
Input schema / properties / bim_model / descriptionPrevious value: -"BIM Model"New value: +"JSON request body field — the bim model for this BIM operation" - changed
Input schema / properties / id / descriptionPrevious value: -"BIM Model ID"New value: +"URL path parameter — unique identifier of the BIM resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
update_bim_model_revision3 fields changed- changed
Input schema / properties / bim_model_revision / descriptionPrevious value: -"bim_model_revision"New value: +"JSON request body field — the bim model revision for this BIM operation" - changed
Input schema / properties / id / descriptionPrevious value: -"BIM Model Revision ID"New value: +"URL path parameter — bIM Model Revision ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
update_bim_plan4 fields changed- changed
Input schema / properties / bim_plan / descriptionPrevious value: -"bim_plan"New value: +"JSON request body field — the bim plan for this BIM operation" - changed
Input schema / properties / id / descriptionPrevious value: -"BIM Plan ID"New value: +"URL path parameter — unique identifier of the BIM resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / view / descriptionPrevious value: -"Specify response schema view"New value: +"JSON request body field — specify response schema view"
- Changed
update_budget_line_item3 fields changed- changed
Input schema / properties / budget_line_item / descriptionPrevious value: -"Budget Line Item object"New value: +"JSON request body field — budget Line Item object" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Budget resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Removed
update_budget_line_item_v1_1 - Changed
update_budget_modification8 fields changed- changed
Input schema / properties / from_budget_line_item_id / descriptionPrevious value: -"ID of the Budget Line Item to transfer from. NOTE 1: required if 'Allow Budget Modifications Which Modify Grand Total' is not checked. NOTE 2: When updating if you want to remove the from_budget_li..."New value: +"JSON request body field — iD of the Budget Line Item to transfer from. NOTE 1: required if 'Allow Budget Modifications Which Modify Grand Total' is not checked. NOTE 2: When updating if you want to remove the from_budget_li..." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Budget resource" - changed
Input schema / properties / notes / descriptionPrevious value: -"Notes on the purpose of the transfer"New value: +"JSON request body field — notes on the purpose of the transfer" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"The Origin Data to associate with this Budget Modification"New value: +"JSON request body field — the Origin Data to associate with this Budget Modification" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"The Origin ID to associate with this Budget Modification (must be unique within a company)"New value: +"JSON request body field — the Origin ID to associate with this Budget Modification (must be unique within a company)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / to_budget_line_item_id / descriptionPrevious value: -"ID of the Budget Line Item to transfer to. NOTE: You may not pass the same to_budget_line_item_id as from_budget_line_item_id."New value: +"JSON request body field — iD of the Budget Line Item to transfer to. NOTE: You may not pass the same to_budget_line_item_id as from_budget_line_item_id." - changed
Input schema / properties / transfer_amount / descriptionPrevious value: -"Transfer amount"New value: +"JSON request body field — the transfer amount for this Budget operation"
- Changed
update_calendar_item10 fields changed- changed
Input schema / properties / assigned_id / descriptionPrevious value: -"ID of the assigned user for the Calendar Item"New value: +"JSON request body field — iD of the assigned user for the Calendar Item" - changed
Input schema / properties / color / descriptionPrevious value: -"Calendar Item color (as a hex triplet)"New value: +"JSON request body field — calendar Item color (as a hex triplet)" - changed
Input schema / properties / description / descriptionPrevious value: -"Calendar Item description"New value: +"JSON request body field — calendar Item description" - changed
Input schema / properties / finish / descriptionPrevious value: -"The finish date of the Calendar Item"New value: +"JSON request body field — the finish date of the Calendar Item" - changed
Input schema / properties / id / descriptionPrevious value: -"Calendar Item ID"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource" - changed
Input schema / properties / name / descriptionPrevious value: -"Calendar Item name"New value: +"JSON request body field — calendar Item name" - changed
Input schema / properties / percentage / descriptionPrevious value: -"Calendar Item completion percentage"New value: +"JSON request body field — calendar Item completion percentage" - changed
Input schema / properties / private / descriptionPrevious value: -"Calendar Item private status"New value: +"JSON request body field — calendar Item private status" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start / descriptionPrevious value: -"The start date of the Calendar Item"New value: +"JSON request body field — the start date of the Calendar Item"
- Changed
update_call_log4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Call Log Attachments are not viewable or used on web. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together..."New value: +"JSON request body field — call Log Attachments are not viewable or used on web. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together..." - changed
Input schema / properties / call_log / descriptionPrevious value: -"call_log"New value: +"JSON request body field — the call log for this Daily Log operation" - changed
Input schema / properties / id / descriptionPrevious value: -"Call log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
update_catalog - Removed
update_catalog_v2_0 - Changed
update_category_name4 fields changed- changed
Input schema / properties / category_id / descriptionPrevious value: -"Unique identifier for the Category."New value: +"URL path parameter — unique identifier for the Category." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / name / descriptionPrevious value: -"The updated name of the Category."New value: +"JSON request body field — the updated name of the Category." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
- Changed
update_change_event27 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Change Event Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — not to be used if other attachment types are included" - added
Input schema / properties / attachments_by_drawing_revisionAdded value: +{ + "description": "JSON request body field — attachments_by_drawing_revision", + "items": {}, + "type": "array" +} - added
Input schema / properties / attachments_by_file_versionAdded value: +{ + "description": "JSON request body field — attachments_by_file_version", + "items": {}, + "type": "array" +} - added
Input schema / properties / attachments_by_formAdded value: +{ + "description": "JSON request body field — the attachments by form for this Change Events operation", + "items": {}, + "type": "array" +} - added
Input schema / properties / attachments_by_imageAdded value: +{ + "description": "JSON request body field — attachments_by_image", + "items": {}, + "type": "array" +} - added
Input schema / properties / attachments_by_uuidAdded value: +{ + "description": "JSON request body field — the attachments by uuid for this Change Events operation", + "items": {}, + "type": "array" +} - removed
Input schema / properties / change_eventRemoved value: -{ - "additionalProperties": {}, - "description": "change_event", - "type": "object" -} - removed
Input schema / properties / change_event_origin_idRemoved value: -{ - "description": "ID of the record to associate as the Change Event origin.\nProvide alongside `change_event_origin_type`. Send both values as `null` to remove an existing origin.", - "type": "number" -} - removed
Input schema / properties / change_event_origin_typeRemoved value: -{ - "description": "Change Event origin type. Supported values: `GenericToolItem`, `CommunicationThread`, `Meeting`, `Observations::Item`, `Rfi::Header`, `SiteInstruction`.", - "type": "string" -} - added
Input schema / properties / change_itemsAdded value: +{ + "description": "JSON request body field — change Event Line Items", + "items": {}, + "type": "array" +} - added
Input schema / properties / change_reasonAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — the change reason for this Change Events operation", + "type": "object" +} - added
Input schema / properties / change_typeAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — the change type for this Change Events operation", + "type": "object" +} - added
Input schema / properties / custom_fieldsAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — the custom fields for this Change Events operation", + "type": "object" +} - added
Input schema / properties / descriptionAdded value: +{ + "description": "JSON request body field — the description for this Change Events operation", + "type": "string" +} - added
Input schema / properties / event_originAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — the event origin for this Change Events operation", + "type": "object" +} - added
Input schema / properties / external_dataAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — the external data for this Change Events operation", + "type": "object" +} - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Change Events resource" - added
Input schema / properties / numberAdded value: +{ + "description": "JSON request body field — the number for this Change Events operation", + "type": "string" +} - removed
Input schema / properties / origin_global_idRemoved value: -{ - "description": "Global ID of the record to associate as the Change Event origin. Provide instead of `change_event_origin_id` and `change_event_origin_type`.", - "type": "string" -} - added
Input schema / properties / prime_contract_for_estimatesAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — prime_contract_for_estimates", + "type": "object" +} - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - added
Input schema / properties / scopeAdded value: +{ + "description": "JSON request body field — event Scope", + "enum": [ + "in_scope", + "out_of_scope", + "tbd" + ], + "type": "string" +} - added
Input schema / properties / sourceAdded value: +{ + "description": "JSON request body field — the Change Event source refers to the resource that was responsible for creating this Change Event.", + "enum": [ + "budget_change", + "field_initiated_change_orders" + ], + "type": "string" +} - added
Input schema / properties / source_of_revenue_romAdded value: +{ + "description": "JSON request body field — revenue ROM source for this Change Event", + "enum": [ + "automatic", + "latest_cost", + "manual", + "no_revenue_expected" + ], + "type": "string" +} - added
Input schema / properties / statusAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — the status for this Change Events operation", + "type": "object" +} - added
Input schema / properties / titleAdded value: +{ + "description": "JSON request body field — the title for this Change Events operation", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "id", - "project_id", - "change_event" -]New value: +[ + "id", + "project_id" +]
- Changed
update_change_event_production_quantity8 fields changed- changed
Input schema / properties / change_event_id / descriptionPrevious value: -"Unique identifier for the Change Event"New value: +"URL path parameter — unique identifier for the Change Event" - changed
Input schema / properties / cost_code_id / descriptionPrevious value: -"ID of the associated Cost Code"New value: +"JSON request body field — iD of the associated Cost Code" - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Change Events operation" - changed
Input schema / properties / id / descriptionPrevious value: -"Change Event Production Quantity ID"New value: +"URL path parameter — change Event Production Quantity ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity / descriptionPrevious value: -"Quantity"New value: +"JSON request body field — the quantity for this Change Events operation" - changed
Input schema / properties / uom / descriptionPrevious value: -"Unit of Measure"New value: +"JSON request body field — unit of Measure" - changed
Input schema / properties / wbs_code_id / descriptionPrevious value: -"ID of the associated WBS Code"New value: +"JSON request body field — iD of the associated WBS Code"
- Removed
update_change_event_v1_1 - Changed
update_change_order_package4 fields changed- changed
Input schema / properties / change_order / descriptionPrevious value: -"change_order"New value: +"JSON request body field — the change order for this Change Orders operation" - changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Change Orders resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
update_change_order_request4 fields changed- changed
Input schema / properties / change_order / descriptionPrevious value: -"change_order"New value: +"JSON request body field — the change order for this Change Orders operation" - changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Change Orders resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
update_checklist5 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Checklist's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — checklist's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the Inspections resource" - changed
Input schema / properties / list / descriptionPrevious value: -"Checklist object"New value: +"JSON request body field — checklist object" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project"New value: +"JSON request body field — the ID of the Project" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
update_checklist_inspection21 fields changed- removed
Input schema / properties / custom_field_%{custom_field_definition_id}Removed value: -{ - "description": "Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ...", - "type": "string" -} - removed
Input schema / properties / descriptionRemoved value: -{ - "description": "Description of the Inspection", - "type": "string" -} - removed
Input schema / properties / distribution_member_idsRemoved value: -{ - "description": "The IDs of the Distribution Members for the Inspection", - "items": {}, - "type": "array" -} - removed
Input schema / properties / due_atRemoved value: -{ - "description": "Timestamp indicating when the Inspection is due.", - "type": "string" -} - changed
Input schema / properties / id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the Inspections resource" - removed
Input schema / properties / inspection_dateRemoved value: -{ - "description": "Date of the Inspection", - "type": "string" -} - removed
Input schema / properties / inspection_type_idRemoved value: -{ - "description": "The ID of the Inspection's Type", - "type": "number" -} - removed
Input schema / properties / inspector_idsRemoved value: -{ - "description": "The IDs of the Inspectors performing the Inspection", - "items": {}, - "type": "array" -} - added
Input schema / properties / listAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — the list for this Inspections operation", + "type": "object" +} - removed
Input schema / properties / location_idRemoved value: -{ - "description": "The ID of the Location of the Inspection", - "type": "number" -} - removed
Input schema / properties / nameRemoved value: -{ - "description": "The Name of the Inspection", - "type": "string" -} - removed
Input schema / properties / numberRemoved value: -{ - "description": "The Number of the Checklist. If no number is passed in, the next available number will be used.", - "type": "number" -} - removed
Input schema / properties / point_of_contact_idRemoved value: -{ - "description": "The ID of the Inspection's Point of Contact", - "type": "number" -} - removed
Input schema / properties / privateRemoved value: -{ - "description": "Indicates whether this Inspection is private", - "type": "boolean" -} - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - removed
Input schema / properties / responsible_contractor_idRemoved value: -{ - "description": "The ID of the Inspection's Responsible Contractor", - "type": "number" -} - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - removed
Input schema / properties / spec_section_idRemoved value: -{ - "description": "The ID of the Inspection's Specification Section", - "type": "number" -} - removed
Input schema / properties / statusRemoved value: -{ - "description": "The Inspection's status", - "enum": [ - "open", - "in_review", - "closed" - ], - "type": "string" -} - removed
Input schema / properties / trade_idRemoved value: -{ - "description": "The ID of the Trade involved in the Inspection", - "type": "number" -} - changed
Input schema / requiredPrevious value: -[ - "id", - "project_id" -]New value: +[ + "id", + "project_id", + "list" +]
- Removed
update_checklist_inspection_v1_1 - Changed
update_checklist_item6 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Item's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — item's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / id / descriptionPrevious value: -"Item ID"New value: +"URL path parameter — unique identifier of the Inspections resource" - changed
Input schema / properties / item / descriptionPrevious value: -"Item object"New value: +"JSON request body field — item object" - changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Item belongs to"New value: +"JSON request body field — the ID of the Project the Item belongs to" - changed
Input schema / properties / section_id / descriptionPrevious value: -"The ID of the Section the Item belongs to"New value: +"JSON request body field — the ID of the Section the Item belongs to"
- Changed
update_checklist_section4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Checklist Section ID"New value: +"URL path parameter — checklist Section ID" - changed
Input schema / properties / list_id / descriptionPrevious value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Section belongs to"New value: +"JSON request body field — the ID of the Project the Section belongs to" - changed
Input schema / properties / section / descriptionPrevious value: -"Section object"New value: +"JSON request body field — section object"
- Changed
update_classification4 fields changed- changed
Input schema / properties / abbreviation / descriptionPrevious value: -"The shortened form of classification"New value: +"JSON request body field — the shortened form of classification" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Classification"New value: +"URL path parameter — id of the Classification" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the classification"New value: +"JSON request body field — name of the classification"
- Changed
update_commitment_change_order32 fields changed- changed
Input schema / properties / attachment_ids / descriptionPrevious value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response" - changed
Input schema / properties / batch_id / descriptionPrevious value: -"Unique identifier for a change order batch."New value: +"JSON request body field — unique identifier for a change order batch." - changed
Input schema / properties / change_event_attachment_ids / descriptionPrevious value: -"List of attachment IDs to attach. These must presently be associated with Change Events."New value: +"JSON request body field — list of attachment IDs to attach. These must presently be associated with Change Events." - changed
Input schema / properties / change_order_change_reason_id / descriptionPrevious value: -"Unique identifier for the change reason."New value: +"JSON request body field — unique identifier for the change reason." - changed
Input schema / properties / contract_id / descriptionPrevious value: -"Unique identifier for the contract."New value: +"JSON request body field — unique identifier for the contract." - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Commitments operation" - changed
Input schema / properties / designated_reviewer_id / descriptionPrevious value: -"Unique identifier for the designated reviewer. This field is only supported for single-tier projects. Behavior is undefined in multi-tier projects."New value: +"JSON request body field — unique identifier for the designated reviewer. This field is only supported for single-tier projects. Behavior is undefined in multi-tier projects." - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / due_date / descriptionPrevious value: -"Due Date"New value: +"JSON request body field — due date in YYYY-MM-DD format" - changed
Input schema / properties / enable_ssov / descriptionPrevious value: -"Whether to enable SSOV on this Change Order. Only applicable to Commitment Change Orders."New value: +"JSON request body field — whether to enable SSOV on this Change Order. Only applicable to Commitment Change Orders." - changed
Input schema / properties / executed / descriptionPrevious value: -"Whether or not the Change Order is executed"New value: +"JSON request body field — whether or not the Change Order is executed" - changed
Input schema / properties / field_change / descriptionPrevious value: -"Field Change"New value: +"JSON request body field — the field change for this Commitments operation" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Commitment Change Order"New value: +"URL path parameter — iD of the Commitment Change Order" - changed
Input schema / properties / invoiced_date / descriptionPrevious value: -"Invoiced Date"New value: +"JSON request body field — the invoiced date in YYYY-MM-DD format" - changed
Input schema / properties / location_id / descriptionPrevious value: -"Unique identifier for the location."New value: +"JSON request body field — unique identifier for the location." - changed
Input schema / properties / number / descriptionPrevious value: -"Number of the Change Order"New value: +"JSON request body field — number of the Change Order" - changed
Input schema / properties / paid / descriptionPrevious value: -"Whether or not the Commitment Change Order is paid"New value: +"JSON request body field — whether or not the Commitment Change Order is paid" - changed
Input schema / properties / paid_date / descriptionPrevious value: -"Paid Date"New value: +"JSON request body field — the paid date in YYYY-MM-DD format" - changed
Input schema / properties / private / descriptionPrevious value: -"Whether or not the Commitment Change Order is private"New value: +"JSON request body field — whether or not the Commitment Change Order is private" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / reason / descriptionPrevious value: -"Reason for the change order"New value: +"JSON request body field — reason for the change order" - changed
Input schema / properties / received_from_id / descriptionPrevious value: -"Unique identifier for the received from entity."New value: +"JSON request body field — unique identifier for the received from entity." - changed
Input schema / properties / reference / descriptionPrevious value: -"Reference"New value: +"JSON request body field — the reference for this Commitments operation" - changed
Input schema / properties / revision / descriptionPrevious value: -"Revision Number"New value: +"JSON request body field — revision Number" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / schedule_impact_amount / descriptionPrevious value: -"Schedule impact in days"New value: +"JSON request body field — schedule impact in days" - changed
Input schema / properties / signature_required / descriptionPrevious value: -"Whether a signature will be required for this Change Order"New value: +"JSON request body field — whether a signature will be required for this Change Order" - changed
Input schema / properties / signed_change_order_received_date / descriptionPrevious value: -"Signed Change Order Received Date"New value: +"JSON request body field — signed Change Order Received Date" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Commitments operation" - changed
Input schema / properties / title / descriptionPrevious value: -"Title of the Contract"New value: +"JSON request body field — title of the Contract" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies Which view (which attributes) of the resource is going to be present in the response. the extended view includes change events data, while the default view does not."New value: +"Query string parameter — specifies Which view (which attributes) of the resource is going to be present in the response. the extended view includes change events data, while the default view does not."
- Changed
update_commitment_change_order_batch29 fields changed- changed
Input schema / properties / attachment_ids / descriptionPrevious value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response" - changed
Input schema / properties / change_event_attachment_ids / descriptionPrevious value: -"List of attachment IDs to attach. These must presently be associated with Change Events."New value: +"JSON request body field — list of attachment IDs to attach. These must presently be associated with Change Events." - changed
Input schema / properties / change_order_ids / descriptionPrevious value: -"Array of Change Order (PCO) IDs to link to this batch. This field is only supported for two-tier projects."New value: +"JSON request body field — array of Change Order (PCO) IDs to link to this batch. This field is only supported for two-tier projects." - changed
Input schema / properties / contract_id / descriptionPrevious value: -"Unique identifier for the contract."New value: +"JSON request body field — unique identifier for the contract." - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Commitments operation" - changed
Input schema / properties / designated_reviewer_id / descriptionPrevious value: -"Unique identifier for the designated reviewer. This field is only supported for single-tier projects. Behavior is undefined in multi-tier projects."New value: +"JSON request body field — unique identifier for the designated reviewer. This field is only supported for single-tier projects. Behavior is undefined in multi-tier projects." - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / due_date / descriptionPrevious value: -"Due Date"New value: +"JSON request body field — due date in YYYY-MM-DD format" - changed
Input schema / properties / executed / descriptionPrevious value: -"Whether or not the Change Order Batch is executed"New value: +"JSON request body field — whether or not the Change Order Batch is executed" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Commitment Change Order Batch"New value: +"URL path parameter — iD of the Commitment Change Order Batch" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / invoiced_date / descriptionPrevious value: -"Invoiced Date"New value: +"JSON request body field — the invoiced date in YYYY-MM-DD format" - changed
Input schema / properties / legacy_request_ids / descriptionPrevious value: -"Array of Change Order Request IDs to link to this batch. This field is only supported for three-tier projects."New value: +"JSON request body field — array of Change Order Request IDs to link to this batch. This field is only supported for three-tier projects." - changed
Input schema / properties / number / descriptionPrevious value: -"Number of the Change Order Batch"New value: +"JSON request body field — number of the Change Order Batch" - changed
Input schema / properties / paid_date / descriptionPrevious value: -"Paid Date"New value: +"JSON request body field — the paid date in YYYY-MM-DD format" - changed
Input schema / properties / private / descriptionPrevious value: -"Whether or not the Change Order Batch is private"New value: +"JSON request body field — whether or not the Change Order Batch is private" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / revised_substantial_completion_date / descriptionPrevious value: -"Revised substantial completion date"New value: +"JSON request body field — revised substantial completion date" - changed
Input schema / properties / revision / descriptionPrevious value: -"Revision Number"New value: +"JSON request body field — revision Number" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / schedule_impact_amount / descriptionPrevious value: -"Schedule impact in days"New value: +"JSON request body field — schedule impact in days" - changed
Input schema / properties / signature_required / descriptionPrevious value: -"Whether a signature will be required for this Change Order Batch"New value: +"JSON request body field — whether a signature will be required for this Change Order Batch" - changed
Input schema / properties / signed_change_order_received_date / descriptionPrevious value: -"Signed Change Order Batch Received Date"New value: +"JSON request body field — signed Change Order Batch Received Date" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Commitments operation" - changed
Input schema / properties / title / descriptionPrevious value: -"Title of the Change Order Batch"New value: +"JSON request body field — title of the Change Order Batch" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
- Added
update_commitment_change_order_line_item - Removed
update_commitment_change_order_line_item_v2_0 - Added
update_commitment_contract - Added
update_commitment_contract_line_item - Removed
update_commitment_contract_line_item_v2_0 - Removed
update_commitment_contract_v2_0 - Changed
update_company_action_plan_template_item_assignee4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Assignee ID"New value: +"URL path parameter — unique identifier of the Action Plans resource" - changed
Input schema / properties / is_holding / descriptionPrevious value: -"Indicates whether or not the Assignee's signature is holding"New value: +"JSON request body field — indicates whether or not the Assignee's signature is holding" - changed
Input schema / properties / verification_method_id / descriptionPrevious value: -"Verification Method ID of the Company Action Plan Template Item Assignee to be set"New value: +"JSON request body field — verification Method ID of the Company Action Plan Template Item Assignee to be set"
- Changed
update_company_action_plan_type3 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Indicates if the Action Plan Type is intended for use"New value: +"JSON request body field — indicates if the Action Plan Type is intended for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Action Plan Type ID"New value: +"URL path parameter — company Action Plan Type ID"
- Changed
update_company_checklist_section4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Checklist Section ID"New value: +"URL path parameter — company Checklist Section ID" - changed
Input schema / properties / name / descriptionPrevious value: -"Name"New value: +"JSON request body field — the name for this Inspections operation" - changed
Input schema / properties / position / descriptionPrevious value: -"The position of Section"New value: +"JSON request body field — the position of Section"
- Changed
update_company_checklist_template4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Checklist Template's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]..."New value: +"JSON request body field — checklist Template's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]..." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Checklist Template ID"New value: +"URL path parameter — company Checklist Template ID" - changed
Input schema / properties / list_template / descriptionPrevious value: -"Checklist Template object"New value: +"JSON request body field — checklist Template object"
- Changed
update_company_currency_configuration4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / currency_display / descriptionPrevious value: -"Currency Display Options"New value: +"JSON request body field — currency Display Options" - changed
Input schema / properties / currency_iso_code / descriptionPrevious value: -"Currency ISO Code"New value: +"JSON request body field — the currency iso code for this Currency Configurations operation" - changed
Input schema / properties / multicurrency_enabled / descriptionPrevious value: -"Whether multicurrency is enabled for the company"New value: +"JSON request body field — whether multicurrency is enabled for the company"
- Changed
update_company_exchange_rates2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / exchange_rates / descriptionPrevious value: -"Company exchange rates"New value: +"JSON request body field — company exchange rates"
- Changed
update_company_file11 fields changed- changed
Input schema / properties / checked_out_until / descriptionPrevious value: -"Check out a file until the specified time. Admins may reset checkout by sending \"null\""New value: +"JSON request body field — check out a file until the specified time. Admins may reset checkout by sending \"null\"" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / data / descriptionPrevious value: -"[DEPRECATED] File to use as file data. Please use upload_uuid instead. Note that it's only possible to post a file using a multipart/form-data body (see RFC 2388). Most HTTP libraries will do the r..."New value: +"JSON request body field — [DEPRECATED] File to use as file data. Please use upload_uuid instead. Note that it's only possible to post a file using a multipart/form-data body (see RFC 2388). Most HTTP libraries will do the r..." - changed
Input schema / properties / description / descriptionPrevious value: -"A description of the file"New value: +"JSON request body field — a description of the file" - changed
Input schema / properties / explicit_permissions / descriptionPrevious value: -"Set file to private (true/false)"New value: +"JSON request body field — set file to private (true/false)" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the File"New value: +"URL path parameter — unique identifier of the Documents resource" - changed
Input schema / properties / is_tracked / descriptionPrevious value: -"Status if a file should be tracked (true/false)"New value: +"JSON request body field — status if a file should be tracked (true/false)" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the file"New value: +"JSON request body field — the Name of the file" - changed
Input schema / properties / parent_id / descriptionPrevious value: -"The ID of the parent folder to move the file to"New value: +"JSON request body field — the ID of the parent folder to move the file to" - changed
Input schema / properties / upload_uuid / descriptionPrevious value: -"UUID referencing a previously completed Upload. This is the recommended approach for file uploads. See Company Uploads or Project Uploads endpoints for instructions on how to use uploads. You sho..."New value: +"JSON request body field — uUID referencing a previously completed Upload. This is the recommended approach for file uploads. See Company Uploads or Project Uploads endpoints for instructions on how to use uploads. You sho..."
- Changed
update_company_folder7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / explicit_permissions / descriptionPrevious value: -"Set folder to private (true/false)"New value: +"JSON request body field — set folder to private (true/false)" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Folder"New value: +"URL path parameter — unique identifier of the Documents resource" - changed
Input schema / properties / is_tracked / descriptionPrevious value: -"Status if a folder should be tracked (true/false)"New value: +"JSON request body field — status if a folder should be tracked (true/false)" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the folder"New value: +"JSON request body field — the Name of the folder" - changed
Input schema / properties / parent_id / descriptionPrevious value: -"The ID of the parent folder to create the folder in. If not set the folder will be created under the root folder."New value: +"JSON request body field — the ID of the parent folder to create the folder in. If not set the folder will be created under the root folder."
- Changed
update_company_form_template5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / description / descriptionPrevious value: -"The Description of the Form Template"New value: +"JSON request body field — the Description of the Form Template" - changed
Input schema / properties / fillable_pdf / descriptionPrevious value: -"Form's Fillable PDF.\nTo upload a fillable PDF you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `fillable_pdf` as files."New value: +"JSON request body field — form's Fillable PDF.\nTo upload a fillable PDF you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `fillable_pdf` as files." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Form Template ID"New value: +"URL path parameter — company Form Template ID" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Form Template"New value: +"JSON request body field — the Name of the Form Template"
- Changed
update_company_inspection_template_item6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Company Inspection Template Item ID"New value: +"URL path parameter — company Inspection Template Item ID" - changed
Input schema / properties / inspection_template_id / descriptionPrevious value: -"The ID of the Company Inspection Template"New value: +"URL path parameter — the ID of the Company Inspection Template" - changed
Input schema / properties / name / descriptionPrevious value: -"Name"New value: +"JSON request body field — the name for this Inspections operation" - changed
Input schema / properties / response_set_id / descriptionPrevious value: -"Response Set ID"New value: +"JSON request body field — unique identifier of the response set" - changed
Input schema / properties / type / descriptionPrevious value: -"Item type"New value: +"JSON request body field — item type"
- Changed
update_company_insurance19 fields changed- changed
Input schema / properties / additional_insured / descriptionPrevious value: -"Additional Individuals and/or Companies Insured"New value: +"JSON request body field — additional Individuals and/or Companies Insured" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / division_template / descriptionPrevious value: -"Division Template"New value: +"JSON request body field — the division template for this Directory operation" - changed
Input schema / properties / effective_date / descriptionPrevious value: -"Effective date"New value: +"JSON request body field — the effective date in YYYY-MM-DD format" - changed
Input schema / properties / enable_expired_insurance_notifications / descriptionPrevious value: -"Enable/Disable expired insurance notifications"New value: +"JSON request body field — enable/Disable expired insurance notifications" - changed
Input schema / properties / exempt / descriptionPrevious value: -"Exempt status"New value: +"JSON request body field — exempt status" - changed
Input schema / properties / expiration_date / descriptionPrevious value: -"Expiration date"New value: +"JSON request body field — the expiration date in YYYY-MM-DD format" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / info_received / descriptionPrevious value: -"Information received (or not)"New value: +"JSON request body field — information received (or not)" - changed
Input schema / properties / insurance_sets / descriptionPrevious value: -"Insurance Sets"New value: +"JSON request body field — the insurance sets for this Directory operation" - changed
Input schema / properties / insurance_type / descriptionPrevious value: -"Insurance type"New value: +"JSON request body field — the insurance type for this Directory operation" - changed
Input schema / properties / limit / descriptionPrevious value: -"Limit"New value: +"JSON request body field — the limit for this Directory operation" - changed
Input schema / properties / name / descriptionPrevious value: -"Provider name"New value: +"JSON request body field — provider name" - changed
Input schema / properties / notes / descriptionPrevious value: -"Notes"New value: +"JSON request body field — the notes for this Directory operation" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"Origin data"New value: +"JSON request body field — the origin data for this Directory operation" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin" - changed
Input schema / properties / policy_number / descriptionPrevious value: -"Policy number"New value: +"JSON request body field — the policy number for this Directory operation" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Directory operation" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"JSON request body field — unique identifier of the vendor"
- Changed
update_company_office3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"The ID of the Company the Office belongs to"New value: +"JSON request body field — the ID of the Company the Office belongs to" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the office"New value: +"URL path parameter — unique identifier of the Company Settings resource" - changed
Input schema / properties / office / descriptionPrevious value: -"Office object"New value: +"JSON request body field — office object"
- Changed
update_company_patterns_segment_order2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / updated_order / descriptionPrevious value: -"New position for each segment in the pattern"New value: +"JSON request body field — new position for each segment in the pattern"
- Changed
update_company_person11 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"The active status of the Company Person"New value: +"JSON request body field — the active status of the Company Person" - changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / employee_id / descriptionPrevious value: -"The Employee ID of the Company Person"New value: +"JSON request body field — the Employee ID of the Company Person" - changed
Input schema / properties / first_name / descriptionPrevious value: -"The First Name of the Company Person"New value: +"JSON request body field — the First Name of the Company Person" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the person"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / is_employee / descriptionPrevious value: -"The Employee status of the Company Person"New value: +"JSON request body field — the Employee status of the Company Person" - changed
Input schema / properties / job_title / descriptionPrevious value: -"The Job Title of the Company Person"New value: +"JSON request body field — the Job Title of the Company Person" - changed
Input schema / properties / last_name / descriptionPrevious value: -"The Last Name of the Company Person"New value: +"JSON request body field — the Last Name of the Company Person" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"The Origin ID of the Company User"New value: +"JSON request body field — the Origin ID of the Company User" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view of the resource to return (which attributes should be present in the response). If a valid view is not provided, it will default to normal."New value: +"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). If a valid view is not provided, it will default to normal." - changed
Input schema / properties / work_classification_id / descriptionPrevious value: -"The unique identifier for the work classification of the Company Person."New value: +"JSON request body field — the unique identifier for the work classification of the Company Person."
- Changed
update_company_segment_item7 fields changed- changed
Input schema / properties / code / descriptionPrevious value: -"Segment Item Code"New value: +"JSON request body field — segment Item Code" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Segment Item ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource" - changed
Input schema / properties / name / descriptionPrevious value: -"Segment Item Name"New value: +"JSON request body field — segment Item Name" - changed
Input schema / properties / segment_id / descriptionPrevious value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment" - changed
Input schema / properties / standard_cost_code_list_id / descriptionPrevious value: -"Standard Cost Code List ID (required for cost codes only)"New value: +"Query string parameter — standard Cost Code List ID (required for cost codes only)" - changed
Input schema / properties / status / descriptionPrevious value: -"Segment Item Status"New value: +"JSON request body field — segment Item Status"
- Changed
update_company_tag10 fields changed- changed
Input schema / properties / abbreviation / descriptionPrevious value: -"A 5-character max String representing the abbreviation that will appear in most Tag views. Defaults to the first 5 characters of the name if not provided."New value: +"JSON request body field — a 5-character max String representing the abbreviation that will appear in most Tag views. Defaults to the first 5 characters of the name if not provided." - changed
Input schema / properties / categories / descriptionPrevious value: -"Array of Tag Categories this Tag should be available to, if Tag Categories are enabled."New value: +"JSON request body field — array of Tag Categories this Tag should be available to, if Tag Categories are enabled." - changed
Input schema / properties / color / descriptionPrevious value: -"Hexadecimal color code for the Tag, used for categorization and visual distinction."New value: +"JSON request body field — hexadecimal color code for the Tag, used for categorization and visual distinction." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. NOTE - this is a Laborchart company ID."New value: +"JSON request body field — unique identifier for the company. NOTE - this is a Laborchart company ID." - changed
Input schema / properties / expr_days_warning / descriptionPrevious value: -"Number of days before expiration when the Tag should be in \"warning\" mode. Only relevant if `require_expr_date` is true."New value: +"JSON request body field — number of days before expiration when the Tag should be in \"warning\" mode. Only relevant if `require_expr_date` is true." - changed
Input schema / properties / globally_accessible / descriptionPrevious value: -"Controls whether the Tag should be globally available to all current and future Groups."New value: +"JSON request body field — controls whether the Tag should be globally available to all current and future Groups." - changed
Input schema / properties / group_ids / descriptionPrevious value: -"Array of UUIDs for which Groups this Tag should be available to or be removed from depending on context. For adding availability, if `globally_accessible` is true, this can be an empty array."New value: +"JSON request body field — array of UUIDs for which Groups this Tag should be available to or be removed from depending on context. For adding availability, if `globally_accessible` is true, this can be an empty array." - changed
Input schema / properties / name / descriptionPrevious value: -"The Tag's name."New value: +"JSON request body field — the Tag's name." - changed
Input schema / properties / require_expr_date / descriptionPrevious value: -"Controls whether the Tag should require an expiration date when applied to a Person."New value: +"JSON request body field — controls whether the Tag should require an expiration date when applied to a Person." - changed
Input schema / properties / tag_id / descriptionPrevious value: -"Unique identifier for the tag."New value: +"URL path parameter — unique identifier for the tag."
- Changed
update_company_upload3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / segments / descriptionPrevious value: -"Upload segments"New value: +"JSON request body field — upload segments" - changed
Input schema / properties / uuid / descriptionPrevious value: -"Upload UUID"New value: +"URL path parameter — upload UUID"
- Removed
update_company_upload_v1_1 - Changed
update_company_user30 fields changed- changed
Input schema / properties / add_to_new_projects / descriptionPrevious value: -"Whether or not this user is added to all new projects. Requests including this parameter will be rejected unless the requesting user has Directory Admin permissions"New value: +"JSON request body field — whether or not this user is added to all new projects. Requests including this parameter will be rejected unless the requesting user has Directory Admin permissions" - changed
Input schema / properties / address / descriptionPrevious value: -"The Address of the Company User"New value: +"JSON request body field — the Address of the Company User" - changed
Input schema / properties / avatar / descriptionPrevious value: -"The Avatar of the Company User.\nTo upload avatar you must upload whole payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `user[avatar]` as file."New value: +"JSON request body field — the Avatar of the Company User.\nTo upload avatar you must upload whole payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `user[avatar]` as file." - changed
Input schema / properties / business_phone / descriptionPrevious value: -"The Business Phone of the Company User"New value: +"JSON request body field — the Business Phone of the Company User" - changed
Input schema / properties / business_phone_extension / descriptionPrevious value: -"The Business Phone Extension of the Company User"New value: +"JSON request body field — the Business Phone Extension of the Company User" - changed
Input schema / properties / city / descriptionPrevious value: -"The City of the Company User"New value: +"JSON request body field — the City of the Company User" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / company_permission_template_id / descriptionPrevious value: -"The ID of the Company Permission Template for the Company User. Requests including this parameter will be rejected unless the requesting user has Directory Admin permissions"New value: +"JSON request body field — the ID of the Company Permission Template for the Company User. Requests including this parameter will be rejected unless the requesting user has Directory Admin permissions" - changed
Input schema / properties / country_code / descriptionPrevious value: -"The Country Code of the Company User (ISO-3166 Alpha-2 format)"New value: +"JSON request body field — the Country Code of the Company User (ISO-3166 Alpha-2 format)" - changed
Input schema / properties / default_permission_template_id / descriptionPrevious value: -"The ID of the default Permission Template for the Company User. Requests including this parameter will be rejected unless the requesting user has Directory Admin permissions"New value: +"JSON request body field — the ID of the default Permission Template for the Company User. Requests including this parameter will be rejected unless the requesting user has Directory Admin permissions" - changed
Input schema / properties / email_address / descriptionPrevious value: -"The Email Address of the Company User. Update requests including this parameter will be rejected unless the requesting user has Directory Admin permissions"New value: +"JSON request body field — the Email Address of the Company User. Update requests including this parameter will be rejected unless the requesting user has Directory Admin permissions" - changed
Input schema / properties / email_signature / descriptionPrevious value: -"The Email Signature of the Company User"New value: +"JSON request body field — the Email Signature of the Company User" - changed
Input schema / properties / employee_id / descriptionPrevious value: -"The ID of the Employee of the Company User when `user[is_employee]` is set to `true`"New value: +"JSON request body field — the ID of the Employee of the Company User when `user[is_employee]` is set to `true`" - changed
Input schema / properties / fax_number / descriptionPrevious value: -"The Fax Number of the Company User"New value: +"JSON request body field — the Fax Number of the Company User" - changed
Input schema / properties / first_name / descriptionPrevious value: -"The First Name of the Company User"New value: +"JSON request body field — the First Name of the Company User" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the user"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / initials / descriptionPrevious value: -"The Initials of the Company User"New value: +"JSON request body field — the Initials of the Company User" - changed
Input schema / properties / is_active / descriptionPrevious value: -"The Active status of the Company User"New value: +"JSON request body field — the Active status of the Company User" - changed
Input schema / properties / is_employee / descriptionPrevious value: -"The Employee status of the Company User"New value: +"JSON request body field — the Employee status of the Company User" - changed
Input schema / properties / job_title / descriptionPrevious value: -"The Job Title of the Company User"New value: +"JSON request body field — the Job Title of the Company User" - changed
Input schema / properties / last_name / descriptionPrevious value: -"The Last Name of the Company User"New value: +"JSON request body field — the Last Name of the Company User" - changed
Input schema / properties / mobile_phone / descriptionPrevious value: -"The Mobile Phone of the Company User"New value: +"JSON request body field — the Mobile Phone of the Company User" - changed
Input schema / properties / notes / descriptionPrevious value: -"The Notes (notes, keywords, tags) of the Company User"New value: +"JSON request body field — the Notes (notes, keywords, tags) of the Company User" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"The Origin Data of the Company User"New value: +"JSON request body field — the Origin Data of the Company User" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"The Origin ID of the Company User"New value: +"JSON request body field — the Origin ID of the Company User" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / state_code / descriptionPrevious value: -"The State Code of the Company User (ISO-3166 Alpha-2 format)"New value: +"JSON request body field — the State Code of the Company User (ISO-3166 Alpha-2 format)" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"The ID of the Vendor of the Company User"New value: +"JSON request body field — the ID of the Vendor of the Company User" - changed
Input schema / properties / work_classification_id / descriptionPrevious value: -"The ID of the Work Classification for the Company User"New value: +"JSON request body field — the ID of the Work Classification for the Company User" - changed
Input schema / properties / zip / descriptionPrevious value: -"The Zip code of the Company User"New value: +"JSON request body field — the Zip code of the Company User"
- Removed
update_company_user_v1_1 - Removed
update_company_user_v1_2 - Removed
update_company_user_v1_3 - Changed
update_company_vendor5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the vendor"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / vendor / descriptionPrevious value: -"vendor"New value: +"JSON request body field — the vendor for this Directory operation" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view of the resource to return (which attributes should be present in the response). The default view is extended."New value: +"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). The default view is extended."
- Changed
update_company_vendor_business_register4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the Company"New value: +"Query string parameter — unique identifier for the Procore company" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Company Vendor"New value: +"URL path parameter — iD of the Company Vendor" - changed
Input schema / properties / identifier / descriptionPrevious value: -"Entity ID. This field ignores spaces and dashes."New value: +"JSON request body field — entity ID. This field ignores spaces and dashes." - changed
Input schema / properties / type / descriptionPrevious value: -"Entity Type"New value: +"JSON request body field — entity Type"
- Changed
update_company_vendor_insurance19 fields changed- changed
Input schema / properties / additional_insured / descriptionPrevious value: -"Additional Individuals and/or Companies Insured"New value: +"JSON request body field — additional Individuals and/or Companies Insured" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / division_template / descriptionPrevious value: -"Division Template"New value: +"JSON request body field — the division template for this Directory operation" - changed
Input schema / properties / effective_date / descriptionPrevious value: -"Effective date"New value: +"JSON request body field — the effective date in YYYY-MM-DD format" - changed
Input schema / properties / enable_expired_insurance_notifications / descriptionPrevious value: -"Enable/Disable expired insurance notifications"New value: +"JSON request body field — enable/Disable expired insurance notifications" - changed
Input schema / properties / exempt / descriptionPrevious value: -"Exempt status"New value: +"JSON request body field — exempt status" - changed
Input schema / properties / expiration_date / descriptionPrevious value: -"Expiration date"New value: +"JSON request body field — the expiration date in YYYY-MM-DD format" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / info_received / descriptionPrevious value: -"Information received (or not)"New value: +"JSON request body field — information received (or not)" - changed
Input schema / properties / insurance_sets / descriptionPrevious value: -"Insurance Sets"New value: +"JSON request body field — the insurance sets for this Directory operation" - changed
Input schema / properties / insurance_type / descriptionPrevious value: -"Insurance type"New value: +"JSON request body field — the insurance type for this Directory operation" - changed
Input schema / properties / limit / descriptionPrevious value: -"Limit"New value: +"JSON request body field — the limit for this Directory operation" - changed
Input schema / properties / name / descriptionPrevious value: -"Provider name"New value: +"JSON request body field — provider name" - changed
Input schema / properties / notes / descriptionPrevious value: -"Notes"New value: +"JSON request body field — the notes for this Directory operation" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"Origin data"New value: +"JSON request body field — the origin data for this Directory operation" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin" - changed
Input schema / properties / policy_number / descriptionPrevious value: -"Policy number"New value: +"JSON request body field — the policy number for this Directory operation" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Directory operation" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
- Changed
update_company_wbs_segment6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource" - changed
Input schema / properties / name / descriptionPrevious value: -"Segment Name"New value: +"JSON request body field — segment Name" - changed
Input schema / properties / project_can_delete_origin_company / descriptionPrevious value: -"Whether Segment Items inherited from the company-level are able to be deleted from a Project."New value: +"JSON request body field — whether Segment Items inherited from the company-level are able to be deleted from a Project." - changed
Input schema / properties / project_can_modify_origin_project / descriptionPrevious value: -"Whether project-specific Segment Items are able to be added/edited/removed from a Project."New value: +"JSON request body field — whether project-specific Segment Items are able to be added/edited/removed from a Project." - changed
Input schema / properties / segment_item_list_id / descriptionPrevious value: -"Segment Item List ID"New value: +"Query string parameter — segment Item List ID"
- Added
update_company_webhooks_hook - Removed
update_company_webhooks_hook_v2_0 - Changed
update_companys_logo2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / type / descriptionPrevious value: -"Type of requesting entity"New value: +"Query string parameter — type of requesting entity"
- Changed
update_concierge_parameters3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / estimated_initial_projects / descriptionPrevious value: -"Estimated number of projects in first three months"New value: +"JSON request body field — estimated number of projects in first three months" - changed
Input schema / properties / estimated_initial_users / descriptionPrevious value: -"Estimated number of staff users in first three months"New value: +"JSON request body field — estimated number of staff users in first three months"
- Changed
update_configurable_field_set8 fields changed- changed
Input schema / properties / category / descriptionPrevious value: -"Category or observations_category_id are required and only needed when associating projects for an Observations Configurable Field Set. (0 = quality, 1 =safety, 2 = commissioning, 3 = warranty, 4 ..."New value: +"JSON request body field — category or observations_category_id are required and only needed when associating projects for an Observations Configurable Field Set. (0 = quality, 1 =safety, 2 = commissioning, 3 = warranty, 4 ..." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / fields / descriptionPrevious value: -"All fields that make up the form of the class name."New value: +"JSON request body field — all fields that make up the form of the class name." - changed
Input schema / properties / id / descriptionPrevious value: -"Configurable Field Set ID"New value: +"URL path parameter — configurable Field Set ID" - changed
Input schema / properties / include_all_projects / descriptionPrevious value: -"Whether or not all projects selected"New value: +"JSON request body field — whether or not all projects selected" - changed
Input schema / properties / name / descriptionPrevious value: -"Name"New value: +"JSON request body field — the name for this Custom - Configurable Tools operation" - changed
Input schema / properties / observations_category_id / descriptionPrevious value: -"Category or observations_category_id are required and only needed when associating projects for an Observations Configurable Field Set. (0 = quality, 1 =safety, 2 = commissioning, 3 = warranty, 4 ..."New value: +"JSON request body field — category or observations_category_id are required and only needed when associating projects for an Observations Configurable Field Set. (0 = quality, 1 =safety, 2 = commissioning, 3 = warranty, 4 ..." - changed
Input schema / properties / project_ids / descriptionPrevious value: -"project_ids"New value: +"JSON request body field — array of project identifiers"
- Changed
update_context5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / context_id / descriptionPrevious value: -"context_id"New value: +"URL path parameter — unique identifier of the context" - changed
Input schema / properties / name / descriptionPrevious value: -"name"New value: +"JSON request body field — the name for this Document Markup operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / settings / descriptionPrevious value: -"settings"New value: +"JSON request body field — the settings for this Document Markup operation"
- Changed
update_contract_payment5 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Contract payment attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as..."New value: +"JSON request body field — contract payment attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as..." - changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract" - changed
Input schema / properties / contract_payment / descriptionPrevious value: -"Contract Payment object"New value: +"JSON request body field — contract Payment object" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
update_contracts_invoice_configuration4 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"ID of the Contract"New value: +"URL path parameter — unique identifier of the contract" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / separate_billing_for_stored_materials / descriptionPrevious value: -"Whether billing for materials separately from the work complete is allowed"New value: +"JSON request body field — whether billing for materials separately from the work complete is allowed" - changed
Input schema / properties / stored_materials_billing_method / descriptionPrevious value: -"Billing method for stored materials"New value: +"JSON request body field — billing method for stored materials"
- Changed
update_contributing_behavior4 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Contributing Behavior is available for use"New value: +"JSON request body field — flag that denotes if the Contributing Behavior is available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Contributing Behavior ID"New value: +"URL path parameter — contributing Behavior ID" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Contributing Behavior"New value: +"JSON request body field — the Name of the Contributing Behavior"
- Changed
update_contributing_condition4 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Contributing Condition is available for use"New value: +"JSON request body field — flag that denotes if the Contributing Condition is available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Contributing Condition ID"New value: +"URL path parameter — contributing Condition ID" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Contributing Condition"New value: +"JSON request body field — the Name of the Contributing Condition"
- Changed
update_coordination_issue3 fields changed- changed
Input schema / properties / coordination_issue / descriptionPrevious value: -"Coordination Issue Item object"New value: +"JSON request body field — coordination Issue Item object" - changed
Input schema / properties / id / descriptionPrevious value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Added
update_coordination_issue_workflow_issue - Removed
update_coordination_issue_workflow_issue_v2_0 - Changed
update_cost_code4 fields changed- changed
Input schema / properties / cost_code / descriptionPrevious value: -"Cost Code object"New value: +"JSON request body field — cost Code object" - changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier for the Cost Code"New value: +"URL path parameter — unique identifier for the Cost Code" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / sub_job_id / descriptionPrevious value: -"Unique identifier for the Sub Job"New value: +"JSON request body field — unique identifier for the Sub Job"
- Added
update_cost_item - Removed
update_cost_item_v2_0 - Added
update_current_project_company - Removed
update_current_project_company_v2_0 - Removed
update_current_project_company_v2_1 - Added
update_current_project_project - Removed
update_current_project_project_v2_0 - Removed
update_current_project_project_v2_1 - Changed
update_custom_field10 fields changed- changed
Input schema / properties / can_filter / descriptionPrevious value: -"If true, allows this field to be used as a filter."New value: +"JSON request body field — if true, allows this field to be used as a filter." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / description / descriptionPrevious value: -"A description to help Admin users understand the field’s purpose."New value: +"JSON request body field — a description to help Admin users understand the field’s purpose." - changed
Input schema / properties / field_id / descriptionPrevious value: -"UUID of the Custom Field."New value: +"URL path parameter — uUID of the Custom Field." - changed
Input schema / properties / integration_only / descriptionPrevious value: -"If true, only integrations can update this field."New value: +"JSON request body field — if true, only integrations can update this field." - changed
Input schema / properties / name / descriptionPrevious value: -"The updated name of the Custom Field."New value: +"JSON request body field — the updated name of the Custom Field." - changed
Input schema / properties / on_people / descriptionPrevious value: -"If true, the field is available on People."New value: +"JSON request body field — if true, the field is available on People." - changed
Input schema / properties / on_projects / descriptionPrevious value: -"If true, the field is available on Projects."New value: +"JSON request body field — if true, the field is available on Projects." - changed
Input schema / properties / sort_by / descriptionPrevious value: -"Controls sorting of dropdown values. `alpha` sorts alphabetically, while `listed` maintains the provided order.\n"New value: +"JSON request body field — controls sorting of dropdown values. `alpha` sorts alphabetically, while `listed` maintains the provided order.\n" - changed
Input schema / properties / values / descriptionPrevious value: -"Only applicable for `select` or `multi-select` fields. Replaces the entire list of values.\n"New value: +"JSON request body field — only applicable for `select` or `multi-select` fields. Replaces the entire list of values.\n"
- Changed
update_daily_construction_report_log5 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Daily Construction Report Log Attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `atta..."New value: +"JSON request body field — daily Construction Report Log Attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `atta..." - changed
Input schema / properties / daily_construction_report_log / descriptionPrevious value: -"daily_construction_report_log"New value: +"JSON request body field — daily_construction_report_log" - changed
Input schema / properties / id / descriptionPrevious value: -"Daily Construction Report Log ID"New value: +"URL path parameter — daily Construction Report Log ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
update_delay_log5 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Attachments pertaining the Log.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` ..."New value: +"JSON request body field — attachments pertaining the Log.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` ..." - changed
Input schema / properties / delay_log / descriptionPrevious value: -"delay_log"New value: +"JSON request body field — the delay log for this Daily Log operation" - changed
Input schema / properties / id / descriptionPrevious value: -"Delay log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
update_deleted_equipment_serial_number3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Equipment"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / serial_number / descriptionPrevious value: -"Serial number of the equipment"New value: +"JSON request body field — serial number of the equipment"
- Changed
update_delivery_log4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Attachments are not viewable or used on web.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `at..."New value: +"JSON request body field — attachments are not viewable or used on web.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `at..." - changed
Input schema / properties / delivery_log / descriptionPrevious value: -"delivery_log"New value: +"JSON request body field — the delivery log for this Daily Log operation" - changed
Input schema / properties / id / descriptionPrevious value: -"Delivery Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
update_department3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company" - changed
Input schema / properties / department / descriptionPrevious value: -"department"New value: +"JSON request body field — the department for this Directory operation" - changed
Input schema / properties / id / descriptionPrevious value: -"Department ID"New value: +"URL path parameter — unique identifier of the Directory resource"
- Changed
update_direct_cost_item5 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Direct Cost Item attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as..."New value: +"JSON request body field — direct Cost Item attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as..." - added
Input schema / properties / direct_costAdded value: +{ + "additionalProperties": {}, + "description": "JSON request body field — direct Cost Item object", + "type": "object" +} - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Direct Costs resource" - removed
Input schema / properties / itemRemoved value: -{ - "additionalProperties": {}, - "description": "Direct Cost Item object", - "type": "object" -} - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
update_direct_cost_item_v1_1 - Changed
update_direct_cost_line_item15 fields changed- changed
Input schema / properties / amount / descriptionPrevious value: -"Amount"New value: +"JSON request body field — the amount for this Direct Costs operation" - changed
Input schema / properties / cost_code_id / descriptionPrevious value: -"Cost Code ID"New value: +"JSON request body field — unique identifier of the cost code" - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Direct Costs operation" - changed
Input schema / properties / direct_cost_id / descriptionPrevious value: -"Direct Cost ID"New value: +"JSON request body field — unique identifier of the direct cost" - changed
Input schema / properties / extended_type / descriptionPrevious value: -"Calculated amount from quantity and unit cost or manually entered amount"New value: +"JSON request body field — calculated amount from quantity and unit cost or manually entered amount" - changed
Input schema / properties / id / descriptionPrevious value: -"Direct Cost Line Item ID"New value: +"URL path parameter — direct Cost Line Item ID" - changed
Input schema / properties / line_item_type_id / descriptionPrevious value: -"Line Item Type ID"New value: +"JSON request body field — unique identifier of the line item type" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"Origin Data"New value: +"JSON request body field — the origin data for this Direct Costs operation" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity / descriptionPrevious value: -"Quantity of described item"New value: +"JSON request body field — quantity of described item" - changed
Input schema / properties / tax_code_id / descriptionPrevious value: -"Tax Code ID"New value: +"JSON request body field — unique identifier of the tax code" - changed
Input schema / properties / unit_cost / descriptionPrevious value: -"Unit cost of described item"New value: +"JSON request body field — unit cost of described item" - changed
Input schema / properties / uom / descriptionPrevious value: -"Unit of measure of the described item"New value: +"JSON request body field — unit of measure of the described item" - changed
Input schema / properties / wbs_code_id / descriptionPrevious value: -"WBS Code ID"New value: +"JSON request body field — unique identifier of the wbs code"
- Changed
update_drawing7 fields changed- changed
Input schema / properties / drawing_area_id / descriptionPrevious value: -"ID of the drawing area"New value: +"URL path parameter — iD of the drawing area" - changed
Input schema / properties / drawing_discipline / descriptionPrevious value: -"Drawing discipline"New value: +"JSON request body field — the drawing discipline for this Drawings operation" - changed
Input schema / properties / id / descriptionPrevious value: -"Drawing ID"New value: +"URL path parameter — unique identifier of the Drawings resource" - changed
Input schema / properties / number / descriptionPrevious value: -"Drawing number"New value: +"JSON request body field — drawing number" - changed
Input schema / properties / obsolete / descriptionPrevious value: -"Obsolete status"New value: +"JSON request body field — obsolete status" - changed
Input schema / properties / ordered_revision_ids / descriptionPrevious value: -"Ordered array of the complete list of reviewed and published Drawing Revision IDs that belong to the drawing"New value: +"JSON request body field — ordered array of the complete list of reviewed and published Drawing Revision IDs that belong to the drawing" - changed
Input schema / properties / title / descriptionPrevious value: -"Drawing title"New value: +"JSON request body field — drawing title"
- Changed
update_drawing_discipline_project3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the discipline to update"New value: +"URL path parameter — iD of the discipline to update" - changed
Input schema / properties / name / descriptionPrevious value: -"New name for the Drawing Discipline"New value: +"JSON request body field — new name for the Drawing Discipline" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
update_drawing_discipline_project_v1_03 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the discipline to update"New value: +"URL path parameter — iD of the discipline to update" - changed
Input schema / properties / name / descriptionPrevious value: -"New name for the Drawing Discipline"New value: +"Query string parameter — new name for the Drawing Discipline" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
update_drawing_discipline_v1_1 - Changed
update_drawing_revision9 fields changed- changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / drawing_date / descriptionPrevious value: -"Drawing date"New value: +"JSON request body field — the drawing date in YYYY-MM-DD format" - changed
Input schema / properties / drawing_id / descriptionPrevious value: -"Drawing ID"New value: +"JSON request body field — unique identifier of the drawing" - changed
Input schema / properties / drawing_set_id / descriptionPrevious value: -"Drawing Set ID"New value: +"JSON request body field — unique identifier of the drawing set" - changed
Input schema / properties / floorplan / descriptionPrevious value: -"Revision floorplan status"New value: +"JSON request body field — revision floorplan status" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Drawing Revision"New value: +"URL path parameter — iD of the Drawing Revision" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / received_date / descriptionPrevious value: -"Received date"New value: +"JSON request body field — the received date in YYYY-MM-DD format" - changed
Input schema / properties / revision_number / descriptionPrevious value: -"Revision number"New value: +"JSON request body field — the revision number for this Drawings operation"
- Changed
update_drawing_set4 fields changed- changed
Input schema / properties / date / descriptionPrevious value: -"Drawing Set date"New value: +"JSON request body field — drawing Set date" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the drawing set"New value: +"URL path parameter — iD of the drawing set" - changed
Input schema / properties / name / descriptionPrevious value: -"Drawing Set name"New value: +"JSON request body field — drawing Set name" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
update_drawing_v1_1 - Changed
update_dumpster_log4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Dumpster Log Attachments are not viewable or used on web\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data toget..."New value: +"JSON request body field — dumpster Log Attachments are not viewable or used on web\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data toget..." - changed
Input schema / properties / dumpster_log / descriptionPrevious value: -"dumpster_log"New value: +"JSON request body field — the dumpster log for this Daily Log operation" - changed
Input schema / properties / id / descriptionPrevious value: -"Dumpster Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
update_early_pay_program4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / early_pay_program_id / descriptionPrevious value: -"UUID of the early pay program"New value: +"URL path parameter — uUID of the early pay program" - changed
Input schema / properties / messageToVendor / descriptionPrevious value: -"Custom message to vendor"New value: +"JSON request body field — custom message to vendor" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the early pay program"New value: +"JSON request body field — name of the early pay program"
- Changed
update_environmental12 fields changed- changed
Input schema / properties / affected_company_id / descriptionPrevious value: -"The ID of the Affected Company"New value: +"JSON request body field — the ID of the Affected Company" - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"Description of event in Rich Text format"New value: +"JSON request body field — description of event in Rich Text format" - changed
Input schema / properties / environmental_type_id / descriptionPrevious value: -"The ID of the Environmental Type"New value: +"JSON request body field — the ID of the Environmental Type" - changed
Input schema / properties / estimated_cost_impact / descriptionPrevious value: -"Estimated cost impact of the record"New value: +"JSON request body field — estimated cost impact of the record" - changed
Input schema / properties / id / descriptionPrevious value: -"Environmental ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"The ID of the Managed Equipment"New value: +"JSON request body field — the ID of the Managed Equipment" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity_unit_of_measure / descriptionPrevious value: -"Unit of measure for the \"quantity\" field (19 possible values)"New value: +"JSON request body field — unit of measure for the \"quantity\" field (19 possible values)" - changed
Input schema / properties / quantity_value / descriptionPrevious value: -"Numeric portion of the \"quantity\" field"New value: +"JSON request body field — numeric portion of the \"quantity\" field" - changed
Input schema / properties / work_activity_id / descriptionPrevious value: -"The ID of the Work Activity"New value: +"JSON request body field — the ID of the Work Activity"
- Changed
update_equipment16 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / company_visible / descriptionPrevious value: -"Company visible"New value: +"JSON request body field — the company visible for this Field Productivity operation" - changed
Input schema / properties / current_project_id / descriptionPrevious value: -"ID of the project the equipment is currently dispatched to"New value: +"JSON request body field — iD of the project the equipment is currently dispatched to" - changed
Input schema / properties / description / descriptionPrevious value: -"description of the equipment"New value: +"JSON request body field — description of the equipment" - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Equipment"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / identification_number / descriptionPrevious value: -"Identification number of the equipment"New value: +"JSON request body field — identification number of the equipment" - changed
Input schema / properties / managed_equipment_category_id / descriptionPrevious value: -"ID of the equipment category"New value: +"JSON request body field — iD of the equipment category" - changed
Input schema / properties / managed_equipment_make_id / descriptionPrevious value: -"ID of the equipment make"New value: +"JSON request body field — iD of the equipment make" - changed
Input schema / properties / managed_equipment_model_id / descriptionPrevious value: -"ID of the equipment model"New value: +"JSON request body field — iD of the equipment model" - changed
Input schema / properties / managed_equipment_type_id / descriptionPrevious value: -"ID of the equipment type"New value: +"JSON request body field — iD of the equipment type" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the equipment"New value: +"JSON request body field — name of the equipment" - changed
Input schema / properties / ownership / descriptionPrevious value: -"The type of ownership"New value: +"JSON request body field — the type of ownership" - changed
Input schema / properties / serial_number / descriptionPrevious value: -"Serial number of the equipment"New value: +"JSON request body field — serial number of the equipment" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Field Productivity operation" - changed
Input schema / properties / upload_uuids / descriptionPrevious value: -"Array of upload uuids"New value: +"JSON request body field — array of upload uuids" - changed
Input schema / properties / year / descriptionPrevious value: -"Year the equipment was manufactured in"New value: +"JSON request body field — year the equipment was manufactured in"
- Added
update_equipment_attachment_company - Removed
update_equipment_attachment_company_v2_0 - Added
update_equipment_attachment_project - Removed
update_equipment_attachment_project_v2_0 - Changed
update_equipment_category4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Equipment Category"New value: +"URL path parameter — iD of the Equipment Category" - changed
Input schema / properties / is_active / descriptionPrevious value: -"If the category is active"New value: +"JSON request body field — if the category is active" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the category"New value: +"JSON request body field — name of the category"
- Added
update_equipment_category_company - Removed
update_equipment_category_company_v2_0 - Changed
update_equipment_company_v2_01 field changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
- Changed
update_equipment_company_v2_121 fields changed- changed
Input schema / properties / assignee_ids / descriptionPrevious value: -"The people id of the equipment."New value: +"JSON request body field — the people id of the equipment." - changed
Input schema / properties / category_id / descriptionPrevious value: -"The category of the equipment."New value: +"JSON request body field — the category of the equipment." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / equipment_id / descriptionPrevious value: -"equipment_id"New value: +"JSON request body field — unique identifier of the equipment" - changed
Input schema / properties / equipment_name / descriptionPrevious value: -"equipment_name"New value: +"JSON request body field — the equipment name for this Equipment operation" - changed
Input schema / properties / group_ids / descriptionPrevious value: -"List of group IDs to be associated with the equipment"New value: +"JSON request body field — list of group IDs to be associated with the equipment" - changed
Input schema / properties / identification_number / descriptionPrevious value: -"The identification number of the equipment."New value: +"JSON request body field — the identification number of the equipment." - changed
Input schema / properties / make_id / descriptionPrevious value: -"The make of the equipment."New value: +"JSON request body field — the make of the equipment." - changed
Input schema / properties / model_id / descriptionPrevious value: -"The model of the equipment."New value: +"JSON request body field — the model of the equipment." - changed
Input schema / properties / name / descriptionPrevious value: -"The name of the equipment."New value: +"JSON request body field — the name of the equipment." - changed
Input schema / properties / notes / descriptionPrevious value: -"notes"New value: +"JSON request body field — the notes for this Equipment operation" - changed
Input schema / properties / ownership / descriptionPrevious value: -"ownership"New value: +"JSON request body field — the ownership for this Equipment operation" - changed
Input schema / properties / profile_photo / descriptionPrevious value: -"profile_photo"New value: +"JSON request body field — the profile photo for this Equipment operation" - changed
Input schema / properties / rate_per_hour / descriptionPrevious value: -"rate_per_hour"New value: +"JSON request body field — the rate per hour for this Equipment operation" - changed
Input schema / properties / rental_end_date / descriptionPrevious value: -"The end date of the rental."New value: +"JSON request body field — the end date of the rental." - changed
Input schema / properties / rental_start_date / descriptionPrevious value: -"The start date of the rental."New value: +"JSON request body field — the start date of the rental." - changed
Input schema / properties / serial_number / descriptionPrevious value: -"The serial number of the equipment."New value: +"JSON request body field — the serial number of the equipment." - changed
Input schema / properties / status_id / descriptionPrevious value: -"The status of the equipment."New value: +"JSON request body field — the status of the equipment." - changed
Input schema / properties / type_id / descriptionPrevious value: -"The type of the equipment."New value: +"JSON request body field — the type of the equipment." - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"The vendor id of the equipment."New value: +"JSON request body field — the vendor id of the equipment." - changed
Input schema / properties / year / descriptionPrevious value: -"The year of the equipment."New value: +"JSON request body field — the year of the equipment."
- Changed
update_equipment_log5 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Equipment Log Attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]` as fi..."New value: +"JSON request body field — equipment Log Attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]` as fi..." - changed
Input schema / properties / equipment_log / descriptionPrevious value: -"equipment_log"New value: +"JSON request body field — the equipment log for this Daily Log operation" - changed
Input schema / properties / id / descriptionPrevious value: -"Equipment Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
update_equipment_maintenance_log6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the company to get the makes for"New value: +"URL path parameter — iD of the company to get the makes for" - changed
Input schema / properties / last_service_date / descriptionPrevious value: -"The Date the equipment was last services"New value: +"JSON request body field — the Date the equipment was last services" - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"Equipment Id the maintenance log is associated with"New value: +"JSON request body field — equipment Id the maintenance log is associated with" - changed
Input schema / properties / next_service_date / descriptionPrevious value: -"Next service date for the equipment"New value: +"JSON request body field — next service date for the equipment" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"The specified array of upload ids is saved as Managed Equipment Maintenance Logs Attachments."New value: +"JSON request body field — the specified array of upload ids is saved as Managed Equipment Maintenance Logs Attachments."
- Added
update_equipment_make_company - Removed
update_equipment_make_company_v2_0 - Added
update_equipment_model_company - Removed
update_equipment_model_company_v2_0 - Added
update_equipment_project_company - Added
update_equipment_project_company_v2_0 - Added
update_equipment_project_company_v2_1 - Removed
update_equipment_project_v2_0 - Removed
update_equipment_project_v2_1_company - Removed
update_equipment_project_v2_1_company_v2_1 - Added
update_equipment_status_company - Removed
update_equipment_status_company_v2_0 - Changed
update_equipment_timecard_entry_project15 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / crew_id / descriptionPrevious value: -"The unique identifier of the crew associated with the equipment timecard entry."New value: +"JSON request body field — the unique identifier of the crew associated with the equipment timecard entry." - changed
Input schema / properties / date / descriptionPrevious value: -"The date of the timecard entry in ISO 8601 format."New value: +"JSON request body field — the date of the timecard entry in ISO 8601 format." - changed
Input schema / properties / equipment_id / descriptionPrevious value: -"The unique identifier of the equipment associated with the equipment timecard entry."New value: +"JSON request body field — the unique identifier of the equipment associated with the equipment timecard entry." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the equipment timecard entry"New value: +"URL path parameter — iD of the equipment timecard entry" - changed
Input schema / properties / idle_quantity / descriptionPrevious value: -"The quantity of hours the equipment was idle for the equipment timecard entry."New value: +"JSON request body field — the quantity of hours the equipment was idle for the equipment timecard entry." - changed
Input schema / properties / location_id / descriptionPrevious value: -"The unique identifier of the location associated with the equipment timecard entry."New value: +"JSON request body field — the unique identifier of the location associated with the equipment timecard entry." - changed
Input schema / properties / origin_data / descriptionPrevious value: -"Value of related external data"New value: +"JSON request body field — value of related external data" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"ID of related external data"New value: +"JSON request body field — iD of related external data" - changed
Input schema / properties / party_id / descriptionPrevious value: -"The unique identifier of the party associated with the equipment timecard entry."New value: +"JSON request body field — the unique identifier of the party associated with the equipment timecard entry." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity / descriptionPrevious value: -"The quantity of hours worked for the equipment timecard entry."New value: +"JSON request body field — the quantity of hours worked for the equipment timecard entry." - changed
Input schema / properties / timesheet_id / descriptionPrevious value: -"The unique identifier of the timesheet associated with the equipment timecard entry."New value: +"JSON request body field — the unique identifier of the timesheet associated with the equipment timecard entry." - changed
Input schema / properties / unit_of_measure / descriptionPrevious value: -"The unit of measure for the quantity, typically 'hours'."New value: +"JSON request body field — the unit of measure for the quantity, typically 'hours'." - changed
Input schema / properties / wbs_code_id / descriptionPrevious value: -"The Work Breakdown Structure (WBS) code associated with the equipment timecard entry."New value: +"JSON request body field — the Work Breakdown Structure (WBS) code associated with the equipment timecard entry."
- Added
update_equipment_type_company - Removed
update_equipment_type_company_v2_0 - Changed
update_existing_or_create_a_new_incident_alert_recipient3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Incident Alert Recipient's User ID"New value: +"URL path parameter — incident Alert Recipient's User ID" - changed
Input schema / properties / severity_level_id / descriptionPrevious value: -"Incident Severity Level ID"New value: +"URL path parameter — incident Severity Level ID"
- Changed
update_filing_type3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Filing Type ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / severity_level_id / descriptionPrevious value: -"Incident Severity Level ID"New value: +"JSON request body field — incident Severity Level ID"
- Changed
update_form8 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Form's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — form's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / description / descriptionPrevious value: -"The Description of the Form"New value: +"JSON request body field — the Description of the Form" - changed
Input schema / properties / fillable_pdf / descriptionPrevious value: -"Form's Fillable PDF.\nTo upload a fillable PDF you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `fillable_pdf` as files."New value: +"JSON request body field — form's Fillable PDF.\nTo upload a fillable PDF you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `fillable_pdf` as files." - changed
Input schema / properties / id / descriptionPrevious value: -"Form ID"New value: +"URL path parameter — unique identifier of the Forms resource" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Form"New value: +"JSON request body field — the Name of the Form" - changed
Input schema / properties / private / descriptionPrevious value: -"The Private status of the Form"New value: +"JSON request body field — the Private status of the Form" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / send_emails / descriptionPrevious value: -"Designates whether or not emails will be sent (default false)"New value: +"Query string parameter — designates whether or not emails will be sent (default false)"
- Changed
update_forward_for_review3 fields changed- changed
Input schema / properties / forwardee_ids / descriptionPrevious value: -"An array of IDs of the Forwardees of the RFI\n*Only existing assignees can set this field when ball in court is in Assignees' court\n**Can only forward to one forwardee"New value: +"JSON request body field — an array of IDs of the Forwardees of the RFI\n*Only existing assignees can set this field when ball in court is in Assignees' court\n**Can only forward to one forwardee" - changed
Input schema / properties / id / descriptionPrevious value: -"RFI ID"New value: +"URL path parameter — unique identifier of the RFI resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Removed
update_forward_for_review_v1_1 - Changed
update_generic_tool7 fields changed- changed
Input schema / properties / abbreviation / descriptionPrevious value: -"An abbreviation for the generic tool."New value: +"JSON request body field — an abbreviation for the generic tool." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Unique identifier for the Generic Tool."New value: +"URL path parameter — unique identifier for the Generic Tool." - changed
Input schema / properties / new_project_default / descriptionPrevious value: -"If this property is set to true, the generic tool will be added to new projects by default."New value: +"JSON request body field — if this property is set to true, the generic tool will be added to new projects by default." - changed
Input schema / properties / private_by_default / descriptionPrevious value: -"If this property is set to true, any items that are created for the tool are private by default."New value: +"JSON request body field — if this property is set to true, any items that are created for the tool are private by default." - changed
Input schema / properties / send_overdue_notifications / descriptionPrevious value: -"If this property is set to true, notifications will be sent to assignees when an item is overdue."New value: +"JSON request body field — if this property is set to true, notifications will be sent to assignees when an item is overdue." - changed
Input schema / properties / title / descriptionPrevious value: -"The title of the generic tool."New value: +"JSON request body field — the title of the generic tool."
- Changed
update_generic_tool_item30 fields changed- changed
Input schema / properties / assignee_ids / descriptionPrevious value: -"An array of assignee identifiers for the generic tool item."New value: +"JSON request body field — an array of assignee identifiers for the generic tool item." - changed
Input schema / properties / attachments / descriptionPrevious value: -"Specifies an array of generic tool item attachments.\nTo upload attachments you must upload the entire payload as a `multipart/form-data` content-type and\nspecify each parameter as form-data togethe..."New value: +"JSON request body field — specifies an array of generic tool item attachments.\nTo upload attachments you must upload the entire payload as a `multipart/form-data` content-type and\nspecify each parameter as form-data togethe..." - changed
Input schema / properties / cost_code_id / descriptionPrevious value: -"The cost code identifier for the generic tool item."New value: +"JSON request body field — the cost code identifier for the generic tool item." - changed
Input schema / properties / cost_impact / descriptionPrevious value: -"The cost impact of the generic tool item."New value: +"JSON request body field — the cost impact of the generic tool item." - changed
Input schema / properties / cost_impact_value / descriptionPrevious value: -"Specifies a value for the cost impact of the generic tool item."New value: +"JSON request body field — specifies a value for the cost impact of the generic tool item." - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"The description of the generic tool item."New value: +"JSON request body field — the description of the generic tool item." - changed
Input schema / properties / distribution_member_ids / descriptionPrevious value: -"An array of distribution member identifiers for the generic tool item."New value: +"JSON request body field — an array of distribution member identifiers for the generic tool item." - changed
Input schema / properties / document_management_document_revision_ids / descriptionPrevious value: -"PDM document to attach to the response"New value: +"JSON request body field — pDM document to attach to the response" - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / due_date / descriptionPrevious value: -"The due date for the generic tool item."New value: +"JSON request body field — the due date for the generic tool item." - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool" - changed
Input schema / properties / generic_tool_item_id / descriptionPrevious value: -"Unique identifier for the Generic Tool Item"New value: +"URL path parameter — unique identifier for the Generic Tool Item" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / location_id / descriptionPrevious value: -"The location identifier for the generic tool item."New value: +"JSON request body field — the location identifier for the generic tool item." - changed
Input schema / properties / position / descriptionPrevious value: -"The position/number of the generic tool item."New value: +"JSON request body field — the position/number of the generic tool item." - changed
Input schema / properties / private / descriptionPrevious value: -"If this property is set to true, the generic tool item is private. If this property is set to false, the generic tool item is not private."New value: +"JSON request body field — if this property is set to true, the generic tool item is private. If this property is set to false, the generic tool item is not private." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / received_from_id / descriptionPrevious value: -"The unique identifier for the Received From entity."New value: +"JSON request body field — the unique identifier for the Received From entity." - changed
Input schema / properties / schedule_impact / descriptionPrevious value: -"The schedule impact status for the generic tool item."New value: +"JSON request body field — the schedule impact status for the generic tool item." - changed
Input schema / properties / schedule_impact_value / descriptionPrevious value: -"Specifies a value for the schedue impact of the generic tool item."New value: +"JSON request body field — specifies a value for the schedue impact of the generic tool item." - changed
Input schema / properties / skip_emails / descriptionPrevious value: -"If true creating and updating the item will not send emails to the users on the item."New value: +"JSON request body field — if true creating and updating the item will not send emails to the users on the item." - changed
Input schema / properties / specification_section_id / descriptionPrevious value: -"The specification section identifier for the generic tool item."New value: +"JSON request body field — the specification section identifier for the generic tool item." - changed
Input schema / properties / status / descriptionPrevious value: -"The status of the generic tool item."New value: +"JSON request body field — the status of the generic tool item." - changed
Input schema / properties / title / descriptionPrevious value: -"The title of the generic tool item."New value: +"JSON request body field — the title of the generic tool item." - changed
Input schema / properties / trade_id / descriptionPrevious value: -"The trade identifier for the generic tool item."New value: +"JSON request body field — the trade identifier for the generic tool item." - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response" - changed
Input schema / properties / view / descriptionPrevious value: -"If supplied customize the response format"New value: +"Query string parameter — if supplied customize the response format"
- Changed
update_generic_tool_item_response5 fields changed- changed
Input schema / properties / generic_tool_id / descriptionPrevious value: -"Unique identifier for the generic tool"New value: +"URL path parameter — unique identifier for the generic tool" - changed
Input schema / properties / generic_tool_item_id / descriptionPrevious value: -"Unique identifier for the generic tool item"New value: +"URL path parameter — unique identifier for the generic tool item" - changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier for the response"New value: +"URL path parameter — unique identifier for the response" - changed
Input schema / properties / official / descriptionPrevious value: -"If this property is set ot true, the response is an official response. If this property is set to false, the response is not an official response."New value: +"JSON request body field — if this property is set ot true, the response is an official response. If this property is set to false, the response is not an official response." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
update_group9 fields changed- changed
Input schema / properties / color / descriptionPrevious value: -"color"New value: +"JSON request body field — the color for this Document Markup operation" - changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / group_id / descriptionPrevious value: -"group_id"New value: +"URL path parameter — unique identifier of the group" - changed
Input schema / properties / layer_id / descriptionPrevious value: -"layer_id"New value: +"JSON request body field — unique identifier of the layer" - changed
Input schema / properties / name / descriptionPrevious value: -"name"New value: +"JSON request body field — the name for this Document Markup operation" - changed
Input schema / properties / order_index / descriptionPrevious value: -"order_index"New value: +"JSON request body field — the order index for this Document Markup operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / settings / descriptionPrevious value: -"settings"New value: +"JSON request body field — the settings for this Document Markup operation" - changed
Input schema / properties / visibility / descriptionPrevious value: -"visibility"New value: +"JSON request body field — the visibility for this Document Markup operation"
- Changed
update_group_order_rank4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / group_id / descriptionPrevious value: -"group_id"New value: +"URL path parameter — unique identifier of the group" - changed
Input schema / properties / order_index / descriptionPrevious value: -"order_index"New value: +"JSON request body field — the order index for this Document Markup operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
update_harm_source4 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Harm Source is available for use"New value: +"JSON request body field — flag that denotes if the Harm Source is available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Harm Source ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Harm Source"New value: +"JSON request body field — the Name of the Harm Source"
- Changed
update_hazard4 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Hazard is available for use"New value: +"JSON request body field — flag that denotes if the Hazard is available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Hazard ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Hazard"New value: +"JSON request body field — the Name of the Hazard"
- Changed
update_image10 fields changed- changed
Input schema / properties / daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID"New value: +"JSON request body field — daily Log Segment ID" - changed
Input schema / properties / description / descriptionPrevious value: -"Image description"New value: +"JSON request body field — image description" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the image"New value: +"URL path parameter — unique identifier of the Photos resource" - changed
Input schema / properties / image_category_id / descriptionPrevious value: -"Image Category ID to move the Image to"New value: +"JSON request body field — image Category ID to move the Image to" - changed
Input schema / properties / location_id / descriptionPrevious value: -"If you want to use an existing location and you have the ID of that existing location use this. `location_id` takes precedence over `mt_location`"New value: +"JSON request body field — if you want to use an existing location and you have the ID of that existing location use this. `location_id` takes precedence over `mt_location`" - changed
Input schema / properties / log_date / descriptionPrevious value: -"log_date"New value: +"JSON request body field — the log date in YYYY-MM-DD format" - changed
Input schema / properties / mt_location / descriptionPrevious value: -"Use this for creating a new multi-tier or single-tier Location. This will be ignored if `location_id` is provided."New value: +"JSON request body field — use this for creating a new multi-tier or single-tier Location. This will be ignored if `location_id` is provided." - changed
Input schema / properties / private / descriptionPrevious value: -"The Private status of the Image. Defaults to a project configuration."New value: +"JSON request body field — the Private status of the Image. Defaults to a project configuration." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / trade_ids / descriptionPrevious value: -"An array of IDs of the Trades of the Image"New value: +"JSON request body field — an array of IDs of the Trades of the Image"
- Changed
update_image_category5 fields changed- changed
Input schema / properties / album_cover_id / descriptionPrevious value: -"ID of an Image that is the cover Image of the Image Category."New value: +"JSON request body field — iD of an Image that is the cover Image of the Image Category." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the image category"New value: +"URL path parameter — iD of the image category" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Image Category"New value: +"JSON request body field — the Name of the Image Category" - changed
Input schema / properties / private / descriptionPrevious value: -"The Private status of the Image Category"New value: +"JSON request body field — the Private status of the Image Category" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
update_incident29 fields changed- changed
Input schema / properties / assignee_ids / descriptionPrevious value: -"An array of Login Information IDs to assign to the Incident. Assignees gain visibility into the Incident and its related records. Not updatable if the Incident has a workflows instance."New value: +"JSON request body field — an array of Login Information IDs to assign to the Incident. Assignees gain visibility into the Incident and its related records. Not updatable if the Incident has a workflows instance." - changed
Input schema / properties / contributing_behavior_id / descriptionPrevious value: -"The ID of a Contributing Behavior"New value: +"JSON request body field — the ID of a Contributing Behavior" - changed
Input schema / properties / contributing_condition_id / descriptionPrevious value: -"The ID of a Contributing Condition"New value: +"JSON request body field — the ID of a Contributing Condition" - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / custom_status_id / descriptionPrevious value: -"The ID of the Custom Status. Mutually exclusive with the status field — setting one sets the other. Not updatable if the Incident has a workflows instance."New value: +"JSON request body field — the ID of the Custom Status. Mutually exclusive with the status field — setting one sets the other. Not updatable if the Incident has a workflows instance." - changed
Input schema / properties / description / descriptionPrevious value: -"Description of the Incident"New value: +"JSON request body field — description of the Incident" - changed
Input schema / properties / distribution_member_ids / descriptionPrevious value: -"An Array of the IDs of the Distribution Members (Not updatable if an incident has a workflows instance)"New value: +"JSON request body field — an Array of the IDs of the Distribution Members (Not updatable if an incident has a workflows instance)" - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / environmentals / descriptionPrevious value: -"Associated Environmentals to create"New value: +"JSON request body field — associated Environmentals to create" - changed
Input schema / properties / event_date / descriptionPrevious value: -"Iso8601 datetime of Incident occurrence. If time is unknown, send in the date at 0:00 project time converted to UTC."New value: +"JSON request body field — iso8601 datetime of Incident occurrence. If time is unknown, send in the date at 0:00 project time converted to UTC." - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / hazard_id / descriptionPrevious value: -"The ID of a Hazard"New value: +"JSON request body field — unique identifier of the hazard" - changed
Input schema / properties / id / descriptionPrevious value: -"Incident ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / injuries / descriptionPrevious value: -"Associated Injuries to create"New value: +"JSON request body field — associated Injuries to create" - changed
Input schema / properties / location_id / descriptionPrevious value: -"The ID of a Location"New value: +"JSON request body field — the ID of a Location" - changed
Input schema / properties / near_misses / descriptionPrevious value: -"Associated Near Misses to create"New value: +"JSON request body field — associated Near Misses to create" - changed
Input schema / properties / private / descriptionPrevious value: -"Indicates whether an Incident is private"New value: +"JSON request body field — indicates whether an Incident is private" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / property_damages / descriptionPrevious value: -"Associated Property Damages to create"New value: +"JSON request body field — associated Property Damages to create" - changed
Input schema / properties / recordable / descriptionPrevious value: -"Indicates whether an Incident is recordable"New value: +"JSON request body field — indicates whether an Incident is recordable" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"Whether or not Configurable validations from the Incident/Injury Configurable Field Set should be run (default: false).\nSee (https://developers.procore.com/reference/configurable-field-sets#list-pr..."New value: +"Query string parameter — whether or not Configurable validations from the Incident/Injury Configurable Field Set should be run (default: false).\nSee (https://developers.procore.com/reference/configurable-field-sets#list-pr..." - changed
Input schema / properties / status / descriptionPrevious value: -"Status (Not updatable if an incident has a workflows instance)"New value: +"JSON request body field — status (Not updatable if an incident has a workflows instance)" - changed
Input schema / properties / time_unknown / descriptionPrevious value: -"Indicates that the time of the Incident occurrence is unknown"New value: +"JSON request body field — indicates that the time of the Incident occurrence is unknown" - changed
Input schema / properties / title / descriptionPrevious value: -"Incident Title"New value: +"JSON request body field — incident Title" - changed
Input schema / properties / type_id / descriptionPrevious value: -"The ID of the Incident Type. Defaults to the company's General type if not provided. The type must be active."New value: +"JSON request body field — the ID of the Incident Type. Defaults to the company's General type if not provided. The type must be active." - changed
Input schema / properties / upload_uuids / descriptionPrevious value: -"Array of uploaded file UUIDs."New value: +"JSON request body field — array of uploaded file UUIDs." - changed
Input schema / properties / witness_statements_attributes / descriptionPrevious value: -"Associated Witness Statement to create"New value: +"JSON request body field — associated Witness Statement to create"
- Changed
update_incident_action_type4 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Incident Action Type is available for use"New value: +"JSON request body field — flag that denotes if the Incident Action Type is available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Incident Action Type ID"New value: +"URL path parameter — incident Action Type ID" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Incident Action Type"New value: +"JSON request body field — the Name of the Incident Action Type"
- Changed
update_incident_severity_level6 fields changed- changed
Input schema / properties / alert_recipient_ids / descriptionPrevious value: -"IDs of Users that should receive notifications"New value: +"JSON request body field — iDs of Users that should receive notifications" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / email_trigger / descriptionPrevious value: -"Indicates whether an email should be sent"New value: +"JSON request body field — indicates whether an email should be sent" - changed
Input schema / properties / id / descriptionPrevious value: -"Incident Severity Level ID"New value: +"URL path parameter — incident Severity Level ID" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the Incident Severity Level"New value: +"JSON request body field — name of the Incident Severity Level" - changed
Input schema / properties / push_notification_trigger / descriptionPrevious value: -"Indicates whether a push notification should be sent"New value: +"JSON request body field — indicates whether a push notification should be sent"
- Changed
update_information_of_a_budget_change9 fields changed- changed
Input schema / properties / adjustment_line_items / descriptionPrevious value: -"List of budget change adjustments"New value: +"JSON request body field — list of budget change adjustments" - changed
Input schema / properties / description / descriptionPrevious value: -"Description of budget change in HTML format"New value: +"JSON request body field — description of budget change in HTML format" - changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier of this budget change"New value: +"JSON request body field — unique identifier of this budget change" - changed
Input schema / properties / number / descriptionPrevious value: -"Number field of budget change"New value: +"JSON request body field — number field of budget change" - changed
Input schema / properties / production_quantities / descriptionPrevious value: -"List of budget change production quantities"New value: +"JSON request body field — list of budget change production quantities" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / prostore_file_ids / descriptionPrevious value: -"The desired prostore file identifiers that will replace the current collection of attachments associated with the budget change"New value: +"JSON request body field — the desired prostore file identifiers that will replace the current collection of attachments associated with the budget change" - changed
Input schema / properties / status / descriptionPrevious value: -"Status of budget change"New value: +"JSON request body field — status of budget change" - changed
Input schema / properties / title / descriptionPrevious value: -"Title of budget change"New value: +"JSON request body field — title of budget change"
- Changed
update_injury27 fields changed- changed
Input schema / properties / affected_body_parts / descriptionPrevious value: -"DEPRECATED - Use body_part_ids instead. The body parts affected by the affliction. This requires an affliction_type to be set."New value: +"JSON request body field — dEPRECATED - Use body_part_ids instead. The body parts affected by the affliction. This requires an affliction_type to be set." - changed
Input schema / properties / affected_company_id / descriptionPrevious value: -"The ID of the Affected Company"New value: +"JSON request body field — the ID of the Affected Company" - changed
Input schema / properties / affected_party_id / descriptionPrevious value: -"The ID of the Affected Person. This supports full and reference Users from the People endpoints."New value: +"JSON request body field — the ID of the Affected Person. This supports full and reference Users from the People endpoints." - changed
Input schema / properties / affected_person_id / descriptionPrevious value: -"The ID of the Affected Person. This only supports full Users from the Users endpoints."New value: +"JSON request body field — the ID of the Affected Person. This only supports full Users from the Users endpoints." - changed
Input schema / properties / affliction_type_id / descriptionPrevious value: -"The ID of the Affliction Type. This cannot be cleared if there is an affected_body_part."New value: +"JSON request body field — the ID of the Affliction Type. This cannot be cleared if there is an affected_body_part." - changed
Input schema / properties / body_diagram_type / descriptionPrevious value: -"body_diagram_type"New value: +"JSON request body field — the body diagram type for this Incidents operation" - changed
Input schema / properties / body_part_ids / descriptionPrevious value: -"The IDs of body parts affected by the affliction. This requires an affliction_type to be set."New value: +"JSON request body field — the IDs of body parts affected by the affliction. This requires an affliction_type to be set." - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / date_of_death / descriptionPrevious value: -"Date of death"New value: +"JSON request body field — the date of death for this Incidents operation" - changed
Input schema / properties / description / descriptionPrevious value: -"Description of event in Rich Text format"New value: +"JSON request body field — description of event in Rich Text format" - changed
Input schema / properties / filing_type / descriptionPrevious value: -"Filing Type - The 'recordable' filing_type value is deprecated. When a filing type of 'recordable' is provided, the `recordable` attribute of the Injury will instead be set to 'true'."New value: +"JSON request body field — filing Type - The 'recordable' filing_type value is deprecated. When a filing type of 'recordable' is provided, the `recordable` attribute of the Injury will instead be set to 'true'." - changed
Input schema / properties / harm_source_id / descriptionPrevious value: -"The ID of the Harm Source"New value: +"JSON request body field — the ID of the Harm Source" - changed
Input schema / properties / hospitalized_overnight / descriptionPrevious value: -"Represents whether the injured person was hospitalized overnight"New value: +"JSON request body field — represents whether the injured person was hospitalized overnight" - changed
Input schema / properties / id / descriptionPrevious value: -"Injury ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"The ID of the Managed Equipment"New value: +"JSON request body field — the ID of the Managed Equipment" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / recordable / descriptionPrevious value: -"Represents whether the Injury record is recordable"New value: +"JSON request body field — represents whether the Injury record is recordable" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"Whether or not Configurable validations from the Injury Configurable Field Set should be run (default: false).\nSee (https://developers.procore.com/reference/configurable-field-sets#list-project-con..."New value: +"Query string parameter — whether or not Configurable validations from the Injury Configurable Field Set should be run (default: false).\nSee (https://developers.procore.com/reference/configurable-field-sets#list-project-con..." - changed
Input schema / properties / treated_in_er / descriptionPrevious value: -"Represents whether the injured person was treated in the ER"New value: +"JSON request body field — represents whether the injured person was treated in the ER" - changed
Input schema / properties / treatment_facility / descriptionPrevious value: -"The name of the treatment facility"New value: +"JSON request body field — the name of the treatment facility" - changed
Input schema / properties / treatment_facility_address / descriptionPrevious value: -"The street address of the treatment facility"New value: +"JSON request body field — the street address of the treatment facility" - changed
Input schema / properties / treatment_provider / descriptionPrevious value: -"The name of the treatment provider"New value: +"JSON request body field — the name of the treatment provider" - changed
Input schema / properties / work_activity_id / descriptionPrevious value: -"The ID of the Work Activity"New value: +"JSON request body field — the ID of the Work Activity" - changed
Input schema / properties / work_days_absent / descriptionPrevious value: -"The number of days absent from work"New value: +"JSON request body field — the number of days absent from work" - changed
Input schema / properties / work_days_restricted / descriptionPrevious value: -"The number of days on restricted work"New value: +"JSON request body field — the number of days on restricted work" - changed
Input schema / properties / work_days_transferred / descriptionPrevious value: -"The number of days transferred"New value: +"JSON request body field — the number of days transferred"
- Changed
update_inspection_log4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Inspection Log Attachments are not viewable or used on web.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data to..."New value: +"JSON request body field — inspection Log Attachments are not viewable or used on web.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data to..." - changed
Input schema / properties / id / descriptionPrevious value: -"Inspection Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / inspection_log / descriptionPrevious value: -"inspection_log"New value: +"JSON request body field — the inspection log for this Daily Log operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
update_inspection_type3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Inspection Type ID"New value: +"URL path parameter — unique identifier of the Inspections resource" - changed
Input schema / properties / name / descriptionPrevious value: -"Name"New value: +"JSON request body field — the name for this Inspections operation"
- Changed
update_instruction18 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Instruction's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as fi..."New value: +"JSON request body field — instruction's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as fi..." - changed
Input schema / properties / attention_ids / descriptionPrevious value: -"An array of IDs of the Attentions of the Instruction"New value: +"JSON request body field — an array of IDs of the Attentions of the Instruction" - changed
Input schema / properties / cost_impact / descriptionPrevious value: -"The Cost Impact of the Instruction"New value: +"JSON request body field — the Cost Impact of the Instruction" - changed
Input schema / properties / date_received / descriptionPrevious value: -"date_received"New value: +"JSON request body field — the date received for this Daily Log operation" - changed
Input schema / properties / description / descriptionPrevious value: -"The Description of the Instruction"New value: +"JSON request body field — the Description of the Instruction" - changed
Input schema / properties / distribution_member_ids / descriptionPrevious value: -"An array of IDs of the Distributions of the Instruction"New value: +"JSON request body field — an array of IDs of the Distributions of the Instruction" - changed
Input schema / properties / id / descriptionPrevious value: -"Instruction ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / instruction_from_id / descriptionPrevious value: -"ID of the User who the Instruction is from"New value: +"JSON request body field — iD of the User who the Instruction is from" - changed
Input schema / properties / instruction_type_id / descriptionPrevious value: -"ID of the Instruction Type"New value: +"JSON request body field — iD of the Instruction Type" - changed
Input schema / properties / number / descriptionPrevious value: -"The Number of the Instruction"New value: +"JSON request body field — the Number of the Instruction" - changed
Input schema / properties / private / descriptionPrevious value: -"The Private status of the Instruction"New value: +"JSON request body field — the Private status of the Instruction" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / schedule_impact / descriptionPrevious value: -"The Schedule Impact of the Instruction"New value: +"JSON request body field — the Schedule Impact of the Instruction" - changed
Input schema / properties / send_emails / descriptionPrevious value: -"Designates whether or not emails will be sent (default false)"New value: +"Query string parameter — designates whether or not emails will be sent (default false)" - changed
Input schema / properties / status / descriptionPrevious value: -"The Status of the Instruction"New value: +"JSON request body field — the Status of the Instruction" - changed
Input schema / properties / title / descriptionPrevious value: -"The Title of the Instruction"New value: +"JSON request body field — the Title of the Instruction" - changed
Input schema / properties / trade_ids / descriptionPrevious value: -"An array of IDs of the Trades of the Instruction"New value: +"JSON request body field — an array of IDs of the Trades of the Instruction" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"The specified array of upload ids is saved as Site Instruction Attachments."New value: +"JSON request body field — the specified array of upload ids is saved as Site Instruction Attachments."
- Changed
update_instruction_type3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Instruction ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of Instruction Type"New value: +"JSON request body field — name of Instruction Type" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
update_item_response_set4 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Indicates whether a Response Set is available for use"New value: +"JSON request body field — indicates whether a Response Set is available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Item Response Set ID"New value: +"URL path parameter — item Response Set ID" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the Response Set"New value: +"JSON request body field — name of the Response Set"
- Changed
update_layer7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / layer_id / descriptionPrevious value: -"layer_id"New value: +"URL path parameter — unique identifier of the layer" - changed
Input schema / properties / name / descriptionPrevious value: -"name"New value: +"JSON request body field — the name for this Document Markup operation" - changed
Input schema / properties / order_index / descriptionPrevious value: -"order_index"New value: +"JSON request body field — the order index for this Document Markup operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / settings / descriptionPrevious value: -"settings"New value: +"JSON request body field — the settings for this Document Markup operation" - changed
Input schema / properties / visibility / descriptionPrevious value: -"visibility"New value: +"JSON request body field — the visibility for this Document Markup operation"
- Changed
update_layer_order_rank4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / layer_id / descriptionPrevious value: -"layer_id"New value: +"URL path parameter — unique identifier of the layer" - changed
Input schema / properties / order_index / descriptionPrevious value: -"order_index"New value: +"JSON request body field — the order index for this Document Markup operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
update_line_item_type3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / line_item_type / descriptionPrevious value: -"Line Item Type object"New value: +"JSON request body field — line Item Type object"
- Changed
update_link4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Link ID"New value: +"URL path parameter — unique identifier of the Project-Level Configuration resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / title / descriptionPrevious value: -"The user-facing title of the link"New value: +"JSON request body field — the user-facing title of the link" - changed
Input schema / properties / url / descriptionPrevious value: -"The full URL for the link"New value: +"JSON request body field — the full URL for the link"
- Changed
update_location3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the location"New value: +"URL path parameter — unique identifier of the Project resource" - changed
Input schema / properties / location / descriptionPrevious value: -"location"New value: +"JSON request body field — the location for this Project operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Location belongs to"New value: +"JSON request body field — the ID of the Project the Location belongs to"
- Changed
update_lookahead_task12 fields changed- changed
Input schema / properties / assignee_ids / descriptionPrevious value: -"ID of Contact(s) to assign to this Lookahead Task"New value: +"JSON request body field — iD of Contact(s) to assign to this Lookahead Task" - changed
Input schema / properties / comment / descriptionPrevious value: -"Additional comments"New value: +"JSON request body field — additional comments" - changed
Input schema / properties / end_date / descriptionPrevious value: -"Task end date, in project time zone"New value: +"JSON request body field — task end date, in project time zone" - changed
Input schema / properties / id / descriptionPrevious value: -"Lookahead Task ID"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource" - changed
Input schema / properties / lookahead_id / descriptionPrevious value: -"ID of the associated Lookahead"New value: +"JSON request body field — iD of the associated Lookahead" - changed
Input schema / properties / name / descriptionPrevious value: -"The name of the Task"New value: +"JSON request body field — the name of the Task" - changed
Input schema / properties / parent_id / descriptionPrevious value: -"ID of the parent Lookahead Task"New value: +"JSON request body field — iD of the parent Lookahead Task" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / resource_ids / descriptionPrevious value: -"ID of Resource(s) to assign to this Lookahead Task"New value: +"JSON request body field — iD of Resource(s) to assign to this Lookahead Task" - changed
Input schema / properties / segments / descriptionPrevious value: -"segments"New value: +"JSON request body field — the segments for this Schedule (Legacy) operation" - changed
Input schema / properties / start_date / descriptionPrevious value: -"Task start date, in project time zone"New value: +"JSON request body field — task start date, in project time zone" - changed
Input schema / properties / vendor_ids / descriptionPrevious value: -"ID of Company(s) to assign to this Lookahead Task"New value: +"JSON request body field — iD of Company(s) to assign to this Lookahead Task"
- Changed
update_manpower_log5 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Manpower Log Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — manpower Log Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / id / descriptionPrevious value: -"Manpower Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / manpower_log / descriptionPrevious value: -"manpower_log"New value: +"JSON request body field — the manpower log for this Daily Log operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
update_material7 fields changed- changed
Input schema / properties / description / descriptionPrevious value: -"Description of the material"New value: +"JSON request body field — description of the material" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the project"New value: +"URL path parameter — unique identifier of the Field Productivity resource" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the material"New value: +"JSON request body field — name of the material" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity / descriptionPrevious value: -"Quantity of the material"New value: +"JSON request body field — quantity of the material" - changed
Input schema / properties / time_and_material_entry_id / descriptionPrevious value: -"Time & Material Entry Id the material is associated with"New value: +"JSON request body field — time & Material Entry Id the material is associated with" - changed
Input schema / properties / uom / descriptionPrevious value: -"Unit of measure for the material"New value: +"JSON request body field — unit of measure for the material"
- Removed
update_meeting - Changed
update_meeting_attendee_record5 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Meeting Attendee record"New value: +"URL path parameter — iD of the Meeting Attendee record" - changed
Input schema / properties / login_information_id / descriptionPrevious value: -"The ID of the User to associate with the Meeting"New value: +"JSON request body field — the ID of the User to associate with the Meeting" - changed
Input schema / properties / meeting_id / descriptionPrevious value: -"ID of the Meeting"New value: +"Query string parameter — unique identifier of the meeting" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / status / descriptionPrevious value: -"Attendance status"New value: +"JSON request body field — attendance status"
- Changed
update_meeting_category4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the meeting category"New value: +"URL path parameter — iD of the meeting category" - changed
Input schema / properties / meeting_category / descriptionPrevious value: -"Meeting Category object"New value: +"JSON request body field — meeting Category object" - changed
Input schema / properties / meeting_id / descriptionPrevious value: -"The ID of the Meeting the Meeting Category belongs to"New value: +"JSON request body field — the ID of the Meeting the Meeting Category belongs to" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Meeting Category belongs to"New value: +"JSON request body field — the ID of the Project the Meeting Category belongs to"
- Added
update_meeting_project - Removed
update_meeting_topic - Added
update_meeting_topic_project - Added
update_meeting_topic_v1_0 - Removed
update_meeting_topic_v1_1 - Added
update_meeting_v1_0 - Removed
update_meeting_v1_1 - Changed
update_monitoring_resource8 fields changed- changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Budget operation" - changed
Input schema / properties / end_date / descriptionPrevious value: -"End Date, expressed in ISO 8601 date format (YYYY-MM-DD)"New value: +"JSON request body field — end Date, expressed in ISO 8601 date format (YYYY-MM-DD)" - changed
Input schema / properties / id / descriptionPrevious value: -"Monitoring Resource ID"New value: +"URL path parameter — monitoring Resource ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / start_date / descriptionPrevious value: -"Start Date, expressed in ISO 8601 date format (YYYY-MM-DD)"New value: +"JSON request body field — start Date, expressed in ISO 8601 date format (YYYY-MM-DD)" - changed
Input schema / properties / unit_cost / descriptionPrevious value: -"Unit Cost"New value: +"JSON request body field — the unit cost for this Budget operation" - changed
Input schema / properties / unit_of_measure / descriptionPrevious value: -"Unit of Measure"New value: +"JSON request body field — the unit of measure for this Budget operation" - changed
Input schema / properties / utilization / descriptionPrevious value: -"Utilization, expressed as a decimal where 1.0 is 100%"New value: +"JSON request body field — utilization, expressed as a decimal where 1.0 is 100%"
- Changed
update_multiple_time_and_material_entries5 fields changed- changed
Input schema / properties / change_event_id / descriptionPrevious value: -"Associated Change Event ID"New value: +"JSON request body field — associated Change Event ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / time_and_material_entry_ids / descriptionPrevious value: -"ID's of the Time And Material Entry Objects to be updated"New value: +"JSON request body field — iD's of the Time And Material Entry Objects to be updated" - changed
Input schema / properties / update_change_event_attachment / descriptionPrevious value: -"Will the attachments need to be updated"New value: +"JSON request body field — will the attachments need to be updated"
- Changed
update_near_miss11 fields changed- changed
Input schema / properties / affected_company_id / descriptionPrevious value: -"The ID of the Affected Company"New value: +"JSON request body field — the ID of the Affected Company" - changed
Input schema / properties / affected_party_id / descriptionPrevious value: -"The ID of the Affected Person. This supports full and reference Users from the People endpoints."New value: +"JSON request body field — the ID of the Affected Person. This supports full and reference Users from the People endpoints." - changed
Input schema / properties / affected_person_id / descriptionPrevious value: -"The ID of the Affected Person. This only supports full Users from the Users endpoints."New value: +"JSON request body field — the ID of the Affected Person. This only supports full Users from the Users endpoints." - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"Description of event in Rich Text format"New value: +"JSON request body field — description of event in Rich Text format" - changed
Input schema / properties / harm_source_id / descriptionPrevious value: -"The ID of the Harm Source"New value: +"JSON request body field — the ID of the Harm Source" - changed
Input schema / properties / id / descriptionPrevious value: -"Near Miss ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"The ID of the Managed Equipment"New value: +"JSON request body field — the ID of the Managed Equipment" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / work_activity_id / descriptionPrevious value: -"The ID of the Work Activity"New value: +"JSON request body field — the ID of the Work Activity"
- Changed
update_notes_log5 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Notes Log Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — notes Log Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / id / descriptionPrevious value: -"Notes Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / notes_log / descriptionPrevious value: -"notes_log"New value: +"JSON request body field — the notes log for this Daily Log operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
update_observation_item4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"[DEPRECATED] An array of the Attachments of the Observation Item. Please use upload_ids instead. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and\n..."New value: +"JSON request body field — [DEPRECATED] An array of the Attachments of the Observation Item. Please use upload_ids instead. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and\n..." - changed
Input schema / properties / id / descriptionPrevious value: -"Observation Item ID"New value: +"URL path parameter — unique identifier of the Observations resource" - changed
Input schema / properties / observation / descriptionPrevious value: -"Item object"New value: +"JSON request body field — item object" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Observation Item belongs to"New value: +"JSON request body field — the ID of the Project the Observation Item belongs to"
- Changed
update_payment_application_owner_invoice_for_prime_contract5 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Payment application attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]`..."New value: +"JSON request body field — payment application attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]`..." - changed
Input schema / properties / id / descriptionPrevious value: -"Payment Application (Owner Invoice) ID"New value: +"URL path parameter — payment Application (Owner Invoice) ID" - changed
Input schema / properties / payment_application / descriptionPrevious value: -"Payment Application (Owner Invoice)"New value: +"JSON request body field — payment Application (Owner Invoice)" - changed
Input schema / properties / prime_contract_id / descriptionPrevious value: -"Prime Contract ID"New value: +"URL path parameter — unique identifier of the prime contract" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
update_payment_application_owner_invoice_line_item_for_prime4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Payment Application (Owner Invoice) Line item ID"New value: +"URL path parameter — payment Application (Owner Invoice) Line item ID" - changed
Input schema / properties / payment_application_line_item / descriptionPrevious value: -"Payment Application (Owner Invoice) Line Item"New value: +"JSON request body field — payment Application (Owner Invoice) Line Item" - changed
Input schema / properties / prime_contract_id / descriptionPrevious value: -"Prime Contract ID"New value: +"URL path parameter — unique identifier of the prime contract" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
update_payment_application_owner_invoice_markup_line_item_for4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Payment Application (Owner Invoice) Markup Line item ID"New value: +"URL path parameter — payment Application (Owner Invoice) Markup Line item ID" - changed
Input schema / properties / payment_application_markup_line_item / descriptionPrevious value: -"Payment Application (Owner Invoice) Markup Line Item"New value: +"JSON request body field — payment Application (Owner Invoice) Markup Line Item" - changed
Input schema / properties / prime_contract_id / descriptionPrevious value: -"Prime Contract ID"New value: +"URL path parameter — unique identifier of the prime contract" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
update_payments_beneficiary_classification3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / earlyPayClassification / descriptionPrevious value: -"Early pay classification for the beneficiary"New value: +"JSON request body field — early pay classification for the beneficiary" - changed
Input schema / properties / payments_beneficiary_id / descriptionPrevious value: -"Unique identifier of the payments beneficiary"New value: +"URL path parameter — unique identifier of the payments beneficiary"
- Changed
update_plan_revision_log4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Plan Revision Log Attachments are not viewable or used on web.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data..."New value: +"JSON request body field — plan Revision Log Attachments are not viewable or used on web.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data..." - changed
Input schema / properties / id / descriptionPrevious value: -"Plan Revision Log ID"New value: +"URL path parameter — plan Revision Log ID" - changed
Input schema / properties / plan_revision_log / descriptionPrevious value: -"plan_revision_log"New value: +"JSON request body field — the plan revision log for this Daily Log operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
update_potential_change_order4 fields changed- changed
Input schema / properties / change_order / descriptionPrevious value: -"change_order"New value: +"JSON request body field — the change order for this Change Orders operation" - changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Change Orders resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
update_potential_change_order_line_item4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Change Orders resource" - changed
Input schema / properties / line_item / descriptionPrevious value: -"The Line Item object"New value: +"JSON request body field — the Line Item object" - changed
Input schema / properties / potential_change_order_id / descriptionPrevious value: -"Potential Change Order ID"New value: +"URL path parameter — potential Change Order ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
- Changed
update_prime_change_order32 fields changed- changed
Input schema / properties / attachment_ids / descriptionPrevious value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response" - changed
Input schema / properties / batch_id / descriptionPrevious value: -"Unique identifier for a change order batch."New value: +"JSON request body field — unique identifier for a change order batch." - changed
Input schema / properties / change_event_attachment_ids / descriptionPrevious value: -"List of attachment IDs to attach. These must presently be associated with Change Events."New value: +"JSON request body field — list of attachment IDs to attach. These must presently be associated with Change Events." - changed
Input schema / properties / change_order_change_reason_id / descriptionPrevious value: -"Unique identifier for the change reason."New value: +"JSON request body field — unique identifier for the change reason." - changed
Input schema / properties / contract_id / descriptionPrevious value: -"Unique identifier for the contract."New value: +"JSON request body field — unique identifier for the contract." - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Prime Contracts operation" - changed
Input schema / properties / designated_reviewer_id / descriptionPrevious value: -"Unique identifier for the designated reviewer. This field is only supported for single-tier projects. Behavior is undefined in multi-tier projects."New value: +"JSON request body field — unique identifier for the designated reviewer. This field is only supported for single-tier projects. Behavior is undefined in multi-tier projects." - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / due_date / descriptionPrevious value: -"Due Date"New value: +"JSON request body field — due date in YYYY-MM-DD format" - changed
Input schema / properties / enable_ssov / descriptionPrevious value: -"Whether to enable SSOV on this Change Order. Only applicable to Commitment Change Orders."New value: +"JSON request body field — whether to enable SSOV on this Change Order. Only applicable to Commitment Change Orders." - changed
Input schema / properties / executed / descriptionPrevious value: -"Whether or not the Change Order is executed"New value: +"JSON request body field — whether or not the Change Order is executed" - changed
Input schema / properties / field_change / descriptionPrevious value: -"Field Change"New value: +"JSON request body field — the field change for this Prime Contracts operation" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Prime Change Order"New value: +"URL path parameter — iD of the Prime Change Order" - changed
Input schema / properties / invoiced_date / descriptionPrevious value: -"Invoiced Date"New value: +"JSON request body field — the invoiced date in YYYY-MM-DD format" - changed
Input schema / properties / location_id / descriptionPrevious value: -"Unique identifier for the location."New value: +"JSON request body field — unique identifier for the location." - changed
Input schema / properties / number / descriptionPrevious value: -"Number of the Change Order"New value: +"JSON request body field — number of the Change Order" - changed
Input schema / properties / paid / descriptionPrevious value: -"Whether or not the Commitment Change Order is paid"New value: +"JSON request body field — whether or not the Commitment Change Order is paid" - changed
Input schema / properties / paid_date / descriptionPrevious value: -"Paid Date"New value: +"JSON request body field — the paid date in YYYY-MM-DD format" - changed
Input schema / properties / private / descriptionPrevious value: -"Whether or not the Commitment Change Order is private"New value: +"JSON request body field — whether or not the Commitment Change Order is private" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / reason / descriptionPrevious value: -"Reason for the change order"New value: +"JSON request body field — reason for the change order" - changed
Input schema / properties / received_from_id / descriptionPrevious value: -"Unique identifier for the received from entity."New value: +"JSON request body field — unique identifier for the received from entity." - changed
Input schema / properties / reference / descriptionPrevious value: -"Reference"New value: +"JSON request body field — the reference for this Prime Contracts operation" - changed
Input schema / properties / revision / descriptionPrevious value: -"Revision Number"New value: +"JSON request body field — revision Number" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / schedule_impact_amount / descriptionPrevious value: -"Schedule impact in days"New value: +"JSON request body field — schedule impact in days" - changed
Input schema / properties / signature_required / descriptionPrevious value: -"Whether a signature will be required for this Change Order"New value: +"JSON request body field — whether a signature will be required for this Change Order" - changed
Input schema / properties / signed_change_order_received_date / descriptionPrevious value: -"Signed Change Order Received Date"New value: +"JSON request body field — signed Change Order Received Date" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Prime Contracts operation" - changed
Input schema / properties / title / descriptionPrevious value: -"Title of the Contract"New value: +"JSON request body field — title of the Contract" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies Which view (which attributes) of the resource is going to be present in the response. the extended view includes change events data, while the default view does not."New value: +"Query string parameter — specifies Which view (which attributes) of the resource is going to be present in the response. the extended view includes change events data, while the default view does not."
- Changed
update_prime_change_order_batch29 fields changed- changed
Input schema / properties / attachment_ids / descriptionPrevious value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response" - changed
Input schema / properties / change_event_attachment_ids / descriptionPrevious value: -"List of attachment IDs to attach. These must presently be associated with Change Events."New value: +"JSON request body field — list of attachment IDs to attach. These must presently be associated with Change Events." - changed
Input schema / properties / change_order_ids / descriptionPrevious value: -"Array of Change Order (PCO) IDs to link to this batch. This field is only supported for two-tier projects."New value: +"JSON request body field — array of Change Order (PCO) IDs to link to this batch. This field is only supported for two-tier projects." - changed
Input schema / properties / contract_id / descriptionPrevious value: -"Unique identifier for the contract."New value: +"JSON request body field — unique identifier for the contract." - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Prime Contracts operation" - changed
Input schema / properties / designated_reviewer_id / descriptionPrevious value: -"Unique identifier for the designated reviewer. This field is only supported for single-tier projects. Behavior is undefined in multi-tier projects."New value: +"JSON request body field — unique identifier for the designated reviewer. This field is only supported for single-tier projects. Behavior is undefined in multi-tier projects." - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / due_date / descriptionPrevious value: -"Due Date"New value: +"JSON request body field — due date in YYYY-MM-DD format" - changed
Input schema / properties / executed / descriptionPrevious value: -"Whether or not the Change Order Batch is executed"New value: +"JSON request body field — whether or not the Change Order Batch is executed" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Prime Change Order Batch"New value: +"URL path parameter — iD of the Prime Change Order Batch" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / invoiced_date / descriptionPrevious value: -"Invoiced Date"New value: +"JSON request body field — the invoiced date in YYYY-MM-DD format" - changed
Input schema / properties / legacy_request_ids / descriptionPrevious value: -"Array of Change Order Request IDs to link to this batch. This field is only supported for three-tier projects."New value: +"JSON request body field — array of Change Order Request IDs to link to this batch. This field is only supported for three-tier projects." - changed
Input schema / properties / number / descriptionPrevious value: -"Number of the Change Order Batch"New value: +"JSON request body field — number of the Change Order Batch" - changed
Input schema / properties / paid_date / descriptionPrevious value: -"Paid Date"New value: +"JSON request body field — the paid date in YYYY-MM-DD format" - changed
Input schema / properties / private / descriptionPrevious value: -"Whether or not the Change Order Batch is private"New value: +"JSON request body field — whether or not the Change Order Batch is private" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / revised_substantial_completion_date / descriptionPrevious value: -"Revised substantial completion date"New value: +"JSON request body field — revised substantial completion date" - changed
Input schema / properties / revision / descriptionPrevious value: -"Revision Number"New value: +"JSON request body field — revision Number" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / schedule_impact_amount / descriptionPrevious value: -"Schedule impact in days"New value: +"JSON request body field — schedule impact in days" - changed
Input schema / properties / signature_required / descriptionPrevious value: -"Whether a signature will be required for this Change Order Batch"New value: +"JSON request body field — whether a signature will be required for this Change Order Batch" - changed
Input schema / properties / signed_change_order_received_date / descriptionPrevious value: -"Signed Change Order Batch Received Date"New value: +"JSON request body field — signed Change Order Batch Received Date" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Prime Contracts operation" - changed
Input schema / properties / title / descriptionPrevious value: -"Title of the Change Order Batch"New value: +"JSON request body field — title of the Change Order Batch" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
- Removed
update_prime_contract - Removed
update_prime_contract_line_item - Added
update_prime_contract_line_item_project - Added
update_prime_contract_line_item_project_v2_0 - Added
update_prime_contract_line_item_v1_0 - Removed
update_prime_contract_line_item_v2_0_project - Removed
update_prime_contract_line_item_v2_0_project_v2_0 - Added
update_prime_contract_project - Added
update_prime_contract_v1_0 - Removed
update_prime_contract_v2_0 - Changed
update_productivity_log3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Productivity Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / productivity_log / descriptionPrevious value: -"productivity_log"New value: +"JSON request body field — the productivity log for this Daily Log operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
update_program6 fields changed- changed
Input schema / properties / address_freeform / descriptionPrevious value: -"The Address of the Program"New value: +"JSON request body field — the Address of the Program" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the program"New value: +"URL path parameter — unique identifier of the Company Settings resource" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Program"New value: +"JSON request body field — the Name of the Program" - changed
Input schema / properties / website / descriptionPrevious value: -"The Website of the Program"New value: +"JSON request body field — the Website of the Program" - changed
Input schema / properties / zip / descriptionPrevious value: -"The Zip code of the Program"New value: +"JSON request body field — the Zip code of the Program"
- Changed
update_project4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"The unique identifier for the Company the Project is associated with."New value: +"JSON request body field — the unique identifier for the Company the Project is associated with." - changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / project / descriptionPrevious value: -"project"New value: +"JSON request body field — the project for this Portfolio operation" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
update_project_account5 fields changed- changed
Input schema / properties / bankAccountId / descriptionPrevious value: -"UUID of the bank account to associate with the project"New value: +"JSON request body field — uUID of the bank account to associate with the project" - changed
Input schema / properties / bankAccountType / descriptionPrevious value: -"Type of the bank account"New value: +"JSON request body field — type of the bank account" - changed
Input schema / properties / businessId / descriptionPrevious value: -"UUID of the business to associate with the project"New value: +"JSON request body field — uUID of the business to associate with the project" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Project ID"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
update_project_bid_type3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Project Bid Type"New value: +"URL path parameter — iD of the Project Bid Type" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Project Bid Type"New value: +"JSON request body field — the Name of the Project Bid Type"
- Changed
update_project_checklist_template4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Checklist Template's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]..."New value: +"JSON request body field — checklist Template's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]..." - changed
Input schema / properties / id / descriptionPrevious value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID" - changed
Input schema / properties / list_template / descriptionPrevious value: -"Checklist Template object"New value: +"JSON request body field — checklist Template object" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
update_project_currency_configuration6 fields changed- changed
Input schema / properties / company_currency_exchange_rate_override / descriptionPrevious value: -"Override for the Company Currency Exchange Rate"New value: +"JSON request body field — override for the Company Currency Exchange Rate" - changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / currency_display / descriptionPrevious value: -"Currency Display Options"New value: +"JSON request body field — currency Display Options" - changed
Input schema / properties / currency_iso_code / descriptionPrevious value: -"Currency ISO Code"New value: +"JSON request body field — the currency iso code for this Currency Configurations operation" - changed
Input schema / properties / multicurrency_enabled / descriptionPrevious value: -"Whether to apply currencies to the project's financial objects."New value: +"JSON request body field — whether to apply currencies to the project's financial objects." - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
update_project_distribution_group6 fields changed- changed
Input schema / properties / Idempotency-Token / descriptionPrevious value: -"Unique idempotent token"New value: +"JSON request body field — unique idempotent token" - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Directory operation" - changed
Input schema / properties / distribution_group_id / descriptionPrevious value: -"Unique identifier for the distribution group."New value: +"URL path parameter — unique identifier for the distribution group." - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Distribution Group"New value: +"JSON request body field — the Name of the Distribution Group" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / user_ids / descriptionPrevious value: -"User IDs to associate with the Distribution Group"New value: +"JSON request body field — user IDs to associate with the Distribution Group"
- Changed
update_project_early_pay_programs3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / programId / descriptionPrevious value: -"UUID of the early pay program to assign (null to remove)"New value: +"JSON request body field — uUID of the early pay program to assign (null to remove)" - changed
Input schema / properties / projectIds / descriptionPrevious value: -"List of project IDs to update"New value: +"JSON request body field — list of project IDs to update"
- Changed
update_project_equipment_maintenance_log6 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the company to get the maintenance logs for"New value: +"URL path parameter — iD of the company to get the maintenance logs for" - changed
Input schema / properties / last_service_date / descriptionPrevious value: -"The Date the equipment was last services"New value: +"JSON request body field — the Date the equipment was last services" - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"Equipment Id the maintenance log is associated with"New value: +"JSON request body field — equipment Id the maintenance log is associated with" - changed
Input schema / properties / next_service_date / descriptionPrevious value: -"Next service date for the equipment"New value: +"JSON request body field — next service date for the equipment" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"The specified array of upload ids is saved as Managed Equipment Maintenance Logs Attachments."New value: +"JSON request body field — the specified array of upload ids is saved as Managed Equipment Maintenance Logs Attachments."
- Changed
update_project_exchange_rates3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company" - changed
Input schema / properties / exchange_rates / descriptionPrevious value: -"Project exchange rates"New value: +"JSON request body field — project exchange rates" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
- Changed
update_project_file11 fields changed- changed
Input schema / properties / checked_out_until / descriptionPrevious value: -"Check out a file until the specified time. Admins may reset checkout by sending \"null\""New value: +"JSON request body field — check out a file until the specified time. Admins may reset checkout by sending \"null\"" - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / data / descriptionPrevious value: -"[DEPRECATED] File to use as file data. Please use upload_uuid instead. Note that it's only possible to post a file using a multipart/form-data body (see RFC 2388). Most HTTP libraries will do the r..."New value: +"JSON request body field — [DEPRECATED] File to use as file data. Please use upload_uuid instead. Note that it's only possible to post a file using a multipart/form-data body (see RFC 2388). Most HTTP libraries will do the r..." - changed
Input schema / properties / description / descriptionPrevious value: -"A description of the file"New value: +"JSON request body field — a description of the file" - changed
Input schema / properties / explicit_permissions / descriptionPrevious value: -"Set file to private (true/false)"New value: +"JSON request body field — set file to private (true/false)" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the File"New value: +"URL path parameter — unique identifier of the Documents resource" - changed
Input schema / properties / is_tracked / descriptionPrevious value: -"Status if a file should be tracked (true/false)"New value: +"JSON request body field — status if a file should be tracked (true/false)" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the file"New value: +"JSON request body field — the Name of the file" - changed
Input schema / properties / parent_id / descriptionPrevious value: -"The ID of the parent folder to move the file to"New value: +"JSON request body field — the ID of the parent folder to move the file to" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / upload_uuid / descriptionPrevious value: -"UUID referencing a previously completed Upload. This is the recommended approach for file uploads. See Company Uploads or Project Uploads endpoints for instructions on how to use uploads. You sho..."New value: +"JSON request body field — uUID referencing a previously completed Upload. This is the recommended approach for file uploads. See Company Uploads or Project Uploads endpoints for instructions on how to use uploads. You sho..."
- Changed
update_project_folder7 fields changed- changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / explicit_permissions / descriptionPrevious value: -"Set folder to private (true/false)"New value: +"JSON request body field — set folder to private (true/false)" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the folder"New value: +"URL path parameter — unique identifier of the Documents resource" - changed
Input schema / properties / is_tracked / descriptionPrevious value: -"Status if a folder should be tracked (true/false)"New value: +"JSON request body field — status if a folder should be tracked (true/false)" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the folder"New value: +"JSON request body field — the Name of the folder" - changed
Input schema / properties / parent_id / descriptionPrevious value: -"The ID of the parent folder to move the folder to."New value: +"JSON request body field — the ID of the parent folder to move the folder to." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
update_project_incident_configuration3 fields changed- changed
Input schema / properties / default_distribution_ids / descriptionPrevious value: -"User IDs in the default distribution list"New value: +"JSON request body field — user IDs in the default distribution list" - changed
Input schema / properties / private_by_default / descriptionPrevious value: -"Indicates whether or not Incidents are private by default"New value: +"JSON request body field — indicates whether or not Incidents are private by default" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
update_project_insurance20 fields changed- changed
Input schema / properties / additional_insured / descriptionPrevious value: -"Additional Individuals and/or Companies Insured"New value: +"JSON request body field — additional Individuals and/or Companies Insured" - changed
Input schema / properties / division_template / descriptionPrevious value: -"Division Template"New value: +"JSON request body field — the division template for this Directory operation" - changed
Input schema / properties / effective_date / descriptionPrevious value: -"Effective date"New value: +"JSON request body field — the effective date in YYYY-MM-DD format" - changed
Input schema / properties / enable_expired_insurance_notifications / descriptionPrevious value: -"Enable/Disable expired insurance notifications"New value: +"JSON request body field — enable/Disable expired insurance notifications" - changed
Input schema / properties / exempt / descriptionPrevious value: -"Exempt status"New value: +"JSON request body field — exempt status" - changed
Input schema / properties / expiration_date / descriptionPrevious value: -"Expiration date"New value: +"JSON request body field — the expiration date in YYYY-MM-DD format" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / info_received / descriptionPrevious value: -"Information received (or not)"New value: +"JSON request body field — information received (or not)" - changed
Input schema / properties / insurance_sets / descriptionPrevious value: -"Insurance Sets"New value: +"JSON request body field — the insurance sets for this Directory operation" - changed
Input schema / properties / insurance_type / descriptionPrevious value: -"Insurance type"New value: +"JSON request body field — the insurance type for this Directory operation" - changed
Input schema / properties / limit / descriptionPrevious value: -"Limit"New value: +"JSON request body field — the limit for this Directory operation" - changed
Input schema / properties / name / descriptionPrevious value: -"Provider name"New value: +"JSON request body field — provider name" - changed
Input schema / properties / notes / descriptionPrevious value: -"Notes"New value: +"JSON request body field — the notes for this Directory operation" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"Origin data"New value: +"JSON request body field — the origin data for this Directory operation" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin" - changed
Input schema / properties / policy_number / descriptionPrevious value: -"Policy number"New value: +"JSON request body field — the policy number for this Directory operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Directory operation" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"JSON request body field — unique identifier of the vendor" - changed
Input schema / properties / view / descriptionPrevious value: -"Extended view of data"New value: +"Query string parameter — extended view of data"
- Changed
update_project_location4 fields changed- changed
Input schema / properties / location_id / descriptionPrevious value: -"ID of the location"New value: +"URL path parameter — unique identifier of the location" - changed
Input schema / properties / node_name / descriptionPrevious value: -"The Node Name of the Location"New value: +"JSON request body field — the Node Name of the Location" - changed
Input schema / properties / parent_id / descriptionPrevious value: -"The ID of the Parent Location of the Location"New value: +"JSON request body field — the ID of the Parent Location of the Location" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
update_project_observation_type6 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag denoting if the Observation Type is available for use."New value: +"JSON request body field — flag denoting if the Observation Type is available for use." - changed
Input schema / properties / category / descriptionPrevious value: -"Category to be used for Observations created from this type."New value: +"JSON request body field — category to be used for Observations created from this type." - changed
Input schema / properties / id / descriptionPrevious value: -"Project Observation Type ID"New value: +"URL path parameter — project Observation Type ID" - changed
Input schema / properties / name / descriptionPrevious value: -"Name to be used for Observations created from this type."New value: +"JSON request body field — name to be used for Observations created from this type." - changed
Input schema / properties / observations_category_id / descriptionPrevious value: -"Observations category id to be used for Observations created from this type."New value: +"JSON request body field — observations category id to be used for Observations created from this type." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
update_project_owner_type3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Project Owner Type"New value: +"URL path parameter — iD of the Project Owner Type" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Project Owner Type"New value: +"JSON request body field — the Name of the Project Owner Type"
- Changed
update_project_patterns_segment_order2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / updated_order / descriptionPrevious value: -"New position for each segment in the pattern"New value: +"JSON request body field — new position for each segment in the pattern"
- Changed
update_project_payor_pays_setting3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / payorPaysFees / descriptionPrevious value: -"Whether the payor pays fees for these projects"New value: +"JSON request body field — whether the payor pays fees for these projects" - changed
Input schema / properties / projectIds / descriptionPrevious value: -"List of project IDs to update"New value: +"JSON request body field — list of project IDs to update"
- Changed
update_project_person10 fields changed- changed
Input schema / properties / employee_id / descriptionPrevious value: -"The Employee ID of the Project Person"New value: +"JSON request body field — the Employee ID of the Project Person" - changed
Input schema / properties / first_name / descriptionPrevious value: -"The First Name of the Project Person"New value: +"JSON request body field — the First Name of the Project Person" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the person"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / is_employee / descriptionPrevious value: -"The Employee status of the Project Person"New value: +"JSON request body field — the Employee status of the Project Person" - changed
Input schema / properties / job_title / descriptionPrevious value: -"The Job Title of the Project Person"New value: +"JSON request body field — the Job Title of the Project Person" - changed
Input schema / properties / last_name / descriptionPrevious value: -"The Last Name of the Project Person"New value: +"JSON request body field — the Last Name of the Project Person" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"The ID of the External Data associated with the Project Person"New value: +"JSON request body field — the ID of the External Data associated with the Project Person" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project" - changed
Input schema / properties / view / descriptionPrevious value: -"Specifies which view of the resource to return (which attributes should be present in the response). Users without read permissions to Directory are limited to the normal and extended views. If a v..."New value: +"Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). Users without read permissions to Directory are limited to the normal and extended views. If a v..." - changed
Input schema / properties / work_classification_id / descriptionPrevious value: -"The unique identifier for the work classification of the Project Person."New value: +"JSON request body field — the unique identifier for the work classification of the Project Person."
- Changed
update_project_region3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Project Region"New value: +"URL path parameter — iD of the Project Region" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Project Region"New value: +"JSON request body field — the Name of the Project Region"
- Changed
update_project_segment_item7 fields changed- changed
Input schema / properties / code / descriptionPrevious value: -"Segment Item Code"New value: +"JSON request body field — segment Item Code" - changed
Input schema / properties / id / descriptionPrevious value: -"Segment Item ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource" - changed
Input schema / properties / name / descriptionPrevious value: -"Segment Item Name"New value: +"JSON request body field — segment Item Name" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / segment_id / descriptionPrevious value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment" - changed
Input schema / properties / status / descriptionPrevious value: -"Segment Item Status"New value: +"JSON request body field — segment Item Status" - changed
Input schema / properties / sub_job_id / descriptionPrevious value: -"Required to update a legacy cost code for a specific sub job"New value: +"JSON request body field — required to update a legacy cost code for a specific sub job"
- Changed
update_project_stage5 fields changed- changed
Input schema / properties / category / descriptionPrevious value: -"The Category Type of the Project Stage"New value: +"JSON request body field — the Category Type of the Project Stage" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the project stage"New value: +"URL path parameter — iD of the project stage" - changed
Input schema / properties / is_bidding_stage / descriptionPrevious value: -"The Bidding Stage status of the Project Stage"New value: +"JSON request body field — the Bidding Stage status of the Project Stage" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Project Stage"New value: +"JSON request body field — the Name of the Project Stage"
- Added
update_project_task_company - Added
update_project_task_company_v2_0 - Removed
update_project_task_v2_0_company - Removed
update_project_task_v2_0_company_v2_0 - Changed
update_project_tools2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / tools / descriptionPrevious value: -"tools"New value: +"JSON request body field — the tools for this Project operation"
- Changed
update_project_type3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the project type"New value: +"URL path parameter — iD of the project type" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Project Type"New value: +"JSON request body field — the Name of the Project Type"
- Changed
update_project_upload3 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / segments / descriptionPrevious value: -"Upload segments"New value: +"JSON request body field — upload segments" - changed
Input schema / properties / uuid / descriptionPrevious value: -"Upload UUID"New value: +"URL path parameter — upload UUID"
- Removed
update_project_upload_v1_1 - Changed
update_project_user24 fields changed- changed
Input schema / properties / abbreviated_name / descriptionPrevious value: -"The Initials of the Project User"New value: +"JSON request body field — the Initials of the Project User" - changed
Input schema / properties / address / descriptionPrevious value: -"The street Address of the Project User"New value: +"JSON request body field — the street Address of the Project User" - changed
Input schema / properties / avatar / descriptionPrevious value: -"Project User Avatar.\nTo upload avatar you must upload whole payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `user[avatar]` as file."New value: +"JSON request body field — project User Avatar.\nTo upload avatar you must upload whole payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `user[avatar]` as file." - changed
Input schema / properties / business_phone / descriptionPrevious value: -"The Business Phone number of the Project User"New value: +"JSON request body field — the Business Phone number of the Project User" - changed
Input schema / properties / business_phone_extension / descriptionPrevious value: -"The Business Phone Extension of the Project User"New value: +"JSON request body field — the Business Phone Extension of the Project User" - changed
Input schema / properties / city / descriptionPrevious value: -"The City in which the Project User resides"New value: +"JSON request body field — the City in which the Project User resides" - changed
Input schema / properties / country_code / descriptionPrevious value: -"The Country Code of the Project User (ISO-3166 Alpha-2 format)"New value: +"JSON request body field — the Country Code of the Project User (ISO-3166 Alpha-2 format)" - changed
Input schema / properties / email_address / descriptionPrevious value: -"The Email Address of the Project User"New value: +"JSON request body field — the Email Address of the Project User" - changed
Input schema / properties / email_signature / descriptionPrevious value: -"The Email Signature of the Project User"New value: +"JSON request body field — the Email Signature of the Project User" - changed
Input schema / properties / employee_id / descriptionPrevious value: -"The Employee ID of the Project User"New value: +"JSON request body field — the Employee ID of the Project User" - changed
Input schema / properties / fax_number / descriptionPrevious value: -"The Fax Number of the Project User"New value: +"JSON request body field — the Fax Number of the Project User" - changed
Input schema / properties / first_name / descriptionPrevious value: -"The First Name of the Project User"New value: +"JSON request body field — the First Name of the Project User" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the user"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / is_active / descriptionPrevious value: -"The Active status of the Project User"New value: +"JSON request body field — the Active status of the Project User" - changed
Input schema / properties / is_employee / descriptionPrevious value: -"The Employee status of the Project User"New value: +"JSON request body field — the Employee status of the Project User" - changed
Input schema / properties / job_title / descriptionPrevious value: -"The Job Title of the Project User"New value: +"JSON request body field — the Job Title of the Project User" - changed
Input schema / properties / last_name / descriptionPrevious value: -"The Last Name of the Project User"New value: +"JSON request body field — the Last Name of the Project User" - changed
Input schema / properties / mobile_phone / descriptionPrevious value: -"The Mobile Phone number of the Project User"New value: +"JSON request body field — the Mobile Phone number of the Project User" - changed
Input schema / properties / notes / descriptionPrevious value: -"The Notes (notes/keywords/tags) of the Project User"New value: +"JSON request body field — the Notes (notes/keywords/tags) of the Project User" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / state_code / descriptionPrevious value: -"The State Code of the Project User (ISO-3166 Alpha-2 format)"New value: +"JSON request body field — the State Code of the Project User (ISO-3166 Alpha-2 format)" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"The Vendor ID of the Project User"New value: +"JSON request body field — the Vendor ID of the Project User" - changed
Input schema / properties / zip / descriptionPrevious value: -"The Zip Code of the Project User"New value: +"JSON request body field — the Zip Code of the Project User"
- Changed
update_project_vendor31 fields changed- changed
Input schema / properties / abbreviated_name / descriptionPrevious value: -"Abbreviated name"New value: +"JSON request body field — the abbreviated name for this Directory operation" - changed
Input schema / properties / address / descriptionPrevious value: -"Address"New value: +"JSON request body field — the address for this Directory operation" - changed
Input schema / properties / authorized_bidder / descriptionPrevious value: -"Authorized bidder status"New value: +"JSON request body field — authorized bidder status" - changed
Input schema / properties / bidding / descriptionPrevious value: -"Bidding statuses"New value: +"JSON request body field — bidding statuses" - changed
Input schema / properties / business_phone / descriptionPrevious value: -"Business phone"New value: +"JSON request body field — the business phone for this Directory operation" - changed
Input schema / properties / city / descriptionPrevious value: -"City"New value: +"JSON request body field — the city for this Directory operation" - changed
Input schema / properties / country_code / descriptionPrevious value: -"Country code (ISO-3166 Alpha-2 format)"New value: +"JSON request body field — country code (ISO-3166 Alpha-2 format)" - changed
Input schema / properties / email_address / descriptionPrevious value: -"Email address"New value: +"JSON request body field — the email address for this Directory operation" - changed
Input schema / properties / fax_number / descriptionPrevious value: -"Fax number"New value: +"JSON request body field — the fax number for this Directory operation" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the vendor"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / is_active / descriptionPrevious value: -"Active status"New value: +"JSON request body field — active status" - changed
Input schema / properties / labor_union / descriptionPrevious value: -"Labor union"New value: +"JSON request body field — the labor union for this Directory operation" - changed
Input schema / properties / license_number / descriptionPrevious value: -"License number"New value: +"JSON request body field — the license number for this Directory operation" - changed
Input schema / properties / mobile_phone / descriptionPrevious value: -"Mobile phone"New value: +"JSON request body field — the mobile phone for this Directory operation" - changed
Input schema / properties / name / descriptionPrevious value: -"Name"New value: +"JSON request body field — the name for this Directory operation" - changed
Input schema / properties / non_union_prevailing_wage / descriptionPrevious value: -"Non union prevailing wage status"New value: +"JSON request body field — non union prevailing wage status" - changed
Input schema / properties / notes / descriptionPrevious value: -"Notes (notes/keywords/tags)"New value: +"JSON request body field — notes (notes/keywords/tags)" - changed
Input schema / properties / origin_code / descriptionPrevious value: -"Origin Code"New value: +"JSON request body field — the origin code for this Directory operation" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"Origin Data"New value: +"JSON request body field — the origin data for this Directory operation" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin" - changed
Input schema / properties / parent_id / descriptionPrevious value: -"Parent Vendor ID. Cannot be the same as ID. Only two levels of hierarchy are supported (parent/child)."New value: +"JSON request body field — parent Vendor ID. Cannot be the same as ID. Only two levels of hierarchy are supported (parent/child)." - changed
Input schema / properties / prequalified / descriptionPrevious value: -"Prequalified status"New value: +"JSON request body field — prequalified status" - changed
Input schema / properties / primary_contact_id / descriptionPrevious value: -"Primary Contact ID"New value: +"JSON request body field — unique identifier of the primary contact" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / state_code / descriptionPrevious value: -"State code (ISO-3166 Alpha-2 format)"New value: +"JSON request body field — state code (ISO-3166 Alpha-2 format)" - changed
Input schema / properties / trade_name / descriptionPrevious value: -"Vendor's Trade Name, also known as Doing Business As (DBA)."New value: +"JSON request body field — vendor's Trade Name, also known as Doing Business As (DBA)." - changed
Input schema / properties / union_member / descriptionPrevious value: -"Union member status"New value: +"JSON request body field — union member status" - changed
Input schema / properties / view / descriptionPrevious value: -"The normal view provides what is shown below.\nThe extended view is the same as the normal view but includes children_count, legal_name, parent, and bidding.\nThe default view is normal."New value: +"Query string parameter — the normal view provides what is shown below.\nThe extended view is the same as the normal view but includes children_count, legal_name, parent, and bidding.\nThe default view is normal." - changed
Input schema / properties / website / descriptionPrevious value: -"Website url"New value: +"JSON request body field — website url" - changed
Input schema / properties / zip / descriptionPrevious value: -"Zip code"New value: +"JSON request body field — postal/ZIP code"
- Changed
update_project_vendor_insurance20 fields changed- changed
Input schema / properties / additional_insured / descriptionPrevious value: -"Additional Individuals and/or Companies Insured"New value: +"JSON request body field — additional Individuals and/or Companies Insured" - changed
Input schema / properties / division_template / descriptionPrevious value: -"Division Template"New value: +"JSON request body field — the division template for this Directory operation" - changed
Input schema / properties / effective_date / descriptionPrevious value: -"Effective date"New value: +"JSON request body field — the effective date in YYYY-MM-DD format" - changed
Input schema / properties / enable_expired_insurance_notifications / descriptionPrevious value: -"Enable/Disable expired insurance notifications"New value: +"JSON request body field — enable/Disable expired insurance notifications" - changed
Input schema / properties / exempt / descriptionPrevious value: -"Exempt status"New value: +"JSON request body field — exempt status" - changed
Input schema / properties / expiration_date / descriptionPrevious value: -"Expiration date"New value: +"JSON request body field — the expiration date in YYYY-MM-DD format" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource" - changed
Input schema / properties / info_received / descriptionPrevious value: -"Information received (or not)"New value: +"JSON request body field — information received (or not)" - changed
Input schema / properties / insurance_sets / descriptionPrevious value: -"Insurance Sets"New value: +"JSON request body field — the insurance sets for this Directory operation" - changed
Input schema / properties / insurance_type / descriptionPrevious value: -"Insurance type"New value: +"JSON request body field — the insurance type for this Directory operation" - changed
Input schema / properties / limit / descriptionPrevious value: -"Limit"New value: +"JSON request body field — the limit for this Directory operation" - changed
Input schema / properties / name / descriptionPrevious value: -"Provider name"New value: +"JSON request body field — provider name" - changed
Input schema / properties / notes / descriptionPrevious value: -"Notes"New value: +"JSON request body field — the notes for this Directory operation" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"Origin data"New value: +"JSON request body field — the origin data for this Directory operation" - changed
Input schema / properties / origin_id / descriptionPrevious value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin" - changed
Input schema / properties / policy_number / descriptionPrevious value: -"Policy number"New value: +"JSON request body field — the policy number for this Directory operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Directory operation" - changed
Input schema / properties / vendor_id / descriptionPrevious value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor" - changed
Input schema / properties / view / descriptionPrevious value: -"Extended view of data"New value: +"Query string parameter — extended view of data"
- Removed
update_project_vendor_v1_1 - Added
update_project_webhooks_hook - Removed
update_project_webhooks_hook_v2_0 - Changed
update_property_damage10 fields changed- changed
Input schema / properties / affected_company_id / descriptionPrevious value: -"The ID of the Affected Company"New value: +"JSON request body field — the ID of the Affected Company" - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / description / descriptionPrevious value: -"Description of event in Rich Text format"New value: +"JSON request body field — description of event in Rich Text format" - changed
Input schema / properties / estimated_cost_impact / descriptionPrevious value: -"Estimated cost impact of the record"New value: +"JSON request body field — estimated cost impact of the record" - changed
Input schema / properties / id / descriptionPrevious value: -"Property Damage ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / managed_equipment_id / descriptionPrevious value: -"The ID of the Managed Equipment"New value: +"JSON request body field — the ID of the Managed Equipment" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / responsible_company_id / descriptionPrevious value: -"The ID of the Responsible Company"New value: +"JSON request body field — the ID of the Responsible Company" - changed
Input schema / properties / work_activity_id / descriptionPrevious value: -"The ID of the Work Activity"New value: +"JSON request body field — the ID of the Work Activity"
- Changed
update_punch_item5 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"[DEPRECATED] Punch Item Assignment attachments. Please use upload_uuid instead. Please use application/json content-type with the 'punch_item.upload_ids' property instead. To upload attachments you..."New value: +"JSON request body field — [DEPRECATED] Punch Item Assignment attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with ..." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Punch Item"New value: +"URL path parameter — iD of the Punch Item" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Project ID to which the Punch Item belongs to"New value: +"JSON request body field — project ID to which the Punch Item belongs to" - changed
Input schema / properties / punch_item / descriptionPrevious value: -"punch_item"New value: +"JSON request body field — the punch item for this Punch List operation" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
update_punch_item_assignment5 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Punch Item Assignment attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[..."New value: +"JSON request body field — punch Item Assignment attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[..." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Punch Item Assignment"New value: +"URL path parameter — iD of the Punch Item Assignment" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / punch_item_assignment / descriptionPrevious value: -"Punch Item Assignment object"New value: +"JSON request body field — punch Item Assignment object" - changed
Input schema / properties / send_emails / descriptionPrevious value: -"Parameter to send email to assignees, distribution members and creator of the Punch Item. Parameter must be true and status or comment must have changed for an email to send."New value: +"JSON request body field — parameter to send email to assignees, distribution members and creator of the Punch Item. Parameter must be true and status or comment must have changed for an email to send."
- Changed
update_punch_item_type3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Punch Item Type"New value: +"URL path parameter — iD of the Punch Item Type" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Punch Item Type belongs to"New value: +"JSON request body field — the ID of the Project the Punch Item Type belongs to" - changed
Input schema / properties / punch_item_type / descriptionPrevious value: -"punch_item_type"New value: +"JSON request body field — the punch item type for this Punch List operation"
- Removed
update_punch_item_v1_1 - Changed
update_purchase_order_contract5 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Purchase Order Contract attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachment..."New value: +"JSON request body field — purchase Order Contract attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachment..." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / purchase_order_contract / descriptionPrevious value: -"Purchase Order Contract object"New value: +"JSON request body field — purchase Order Contract object" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set."
- Changed
update_purchase_order_contract_detail_line_item4 fields changed- changed
Input schema / properties / contract_detail_line_item / descriptionPrevious value: -"The Detail Line Item object"New value: +"JSON request body field — the Detail Line Item object" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / purchase_order_contract_id / descriptionPrevious value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
- Changed
update_purchase_order_contract_line_item4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / line_item / descriptionPrevious value: -"The Line Item object"New value: +"JSON request body field — the Line Item object" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / purchase_order_contract_id / descriptionPrevious value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
- Changed
update_purchase_order_contract_subcontractor_sov_status3 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / purchase_order_contract_id / descriptionPrevious value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID" - changed
Input schema / properties / status / descriptionPrevious value: -"Subcontractor SOV status. Admin users or users with granular permissions to update the contract can chan ge the status if the contract has no requisitions (sub invoices) or approved commitment chan..."New value: +"JSON request body field — subcontractor SOV status. Admin users or users with granular permissions to update the contract can chan ge the status if the contract has no requisitions (sub invoices) or approved commitment chan..."
- Changed
update_quantity_log4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Quantity Log Attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — quantity Log Attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / id / descriptionPrevious value: -"Quantity Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / quantity_log / descriptionPrevious value: -"quantity_log"New value: +"JSON request body field — the quantity log for this Daily Log operation"
- Added
update_requisition_compliance_document - Removed
update_requisition_compliance_document_v2_0 - Changed
update_requisition_subcontractor_invoice6 fields changed- removed
Input schema / properties / attachmentsRemoved value: -{ - "description": "Requisition (Subcontractor Invoice) attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with...", - "items": {}, - "type": "array" -} - changed
Input schema / properties / commitment_id / descriptionPrevious value: -"Commitment ID"New value: +"JSON request body field — unique identifier of the commitment" - changed
Input schema / properties / id / descriptionPrevious value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the Procore project" - changed
Input schema / properties / requisition / descriptionPrevious value: -"Requisition (Subcontractor Invoice)"New value: +"JSON request body field — requisition (Subcontractor Invoice)" - added
Input schema / properties / viewAdded value: +{ + "description": "Query string parameter — specifies which view (which attributes) of the resource is going to be present in the response.", + "enum": [ + "default", + "extended", + "items", + "action_policy" + ], + "type": "string" +}
- Changed
update_requisition_subcontractor_invoice_change_order_item9 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Change Order Item ID"New value: +"URL path parameter — change Order Item ID" - changed
Input schema / properties / materials_presently_stored / descriptionPrevious value: -"The amount of materials presently stored (amount accounting only)"New value: +"JSON request body field — the amount of materials presently stored (amount accounting only)" - changed
Input schema / properties / materials_stored_retainage_currently_retained / descriptionPrevious value: -"Materials stored retainage amount currently retained (admin user, amount accounting only, materials_presently_stored should be non-zero to hold a retainage)"New value: +"JSON request body field — materials stored retainage amount currently retained (admin user, amount accounting only, materials_presently_stored should be non-zero to hold a retainage)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / requisition_id / descriptionPrevious value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID" - changed
Input schema / properties / work_completed_retainage_released_this_period / descriptionPrevious value: -"The amount of work completed retainage released this period"New value: +"JSON request body field — the amount of work completed retainage released this period" - changed
Input schema / properties / work_completed_retainage_retained_this_period / descriptionPrevious value: -"Work completed retainage amount retained this period (admin user only, work_completed_this_period should be non-zero to hold a retainage)"New value: +"JSON request body field — work completed retainage amount retained this period (admin user only, work_completed_this_period should be non-zero to hold a retainage)" - changed
Input schema / properties / work_completed_this_period / descriptionPrevious value: -"The amount of work completed this period"New value: +"JSON request body field — the amount of work completed this period" - changed
Input schema / properties / work_completed_this_period_quantity / descriptionPrevious value: -"Work completed this period quantity (unit accounting only)"New value: +"JSON request body field — work completed this period quantity (unit accounting only)"
- Changed
update_requisition_subcontractor_invoice_contract_detail_item9 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Contract Detail Item ID"New value: +"URL path parameter — contract Detail Item ID" - changed
Input schema / properties / materials_presently_stored / descriptionPrevious value: -"The amount of materials presently stored"New value: +"JSON request body field — the amount of materials presently stored" - changed
Input schema / properties / materials_stored_retainage_currently_retained / descriptionPrevious value: -"Materials stored retainage amount currently retained (admin user, amount accounting only, materials_presently_stored should be non-zero to hold a retainage)"New value: +"JSON request body field — materials stored retainage amount currently retained (admin user, amount accounting only, materials_presently_stored should be non-zero to hold a retainage)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / requisition_id / descriptionPrevious value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID" - changed
Input schema / properties / work_completed_retainage_released_this_period / descriptionPrevious value: -"The amount of work completed retainage released this period"New value: +"JSON request body field — the amount of work completed retainage released this period" - changed
Input schema / properties / work_completed_retainage_retained_this_period / descriptionPrevious value: -"Work completed retainage amount retained this period (admin user only, work_completed_this_period should be non-zero to hold a retainage)"New value: +"JSON request body field — work completed retainage amount retained this period (admin user only, work_completed_this_period should be non-zero to hold a retainage)" - changed
Input schema / properties / work_completed_this_period / descriptionPrevious value: -"The amount of work completed this period"New value: +"JSON request body field — the amount of work completed this period" - changed
Input schema / properties / work_completed_this_period_quantity / descriptionPrevious value: -"Work completed this period quantity (unit accounting contract only)"New value: +"JSON request body field — work completed this period quantity (unit accounting contract only)"
- Changed
update_requisition_subcontractor_invoice_contract_item9 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Contract Item ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / materials_presently_stored / descriptionPrevious value: -"The amount of materials presently stored"New value: +"JSON request body field — the amount of materials presently stored" - changed
Input schema / properties / materials_stored_retainage_currently_retained / descriptionPrevious value: -"Materials stored retainage amount currently retained (admin user, amount accounting only, materials_presently_stored should be non-zero to hold a retainage)"New value: +"JSON request body field — materials stored retainage amount currently retained (admin user, amount accounting only, materials_presently_stored should be non-zero to hold a retainage)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / requisition_id / descriptionPrevious value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID" - changed
Input schema / properties / work_completed_retainage_released_this_period / descriptionPrevious value: -"The amount of work completed retainage released this period"New value: +"JSON request body field — the amount of work completed retainage released this period" - changed
Input schema / properties / work_completed_retainage_retained_this_period / descriptionPrevious value: -"Work completed retainage amount retained this period (admin user only, work_completed_this_period should be non-zero to hold a retainage)"New value: +"JSON request body field — work completed retainage amount retained this period (admin user only, work_completed_this_period should be non-zero to hold a retainage)" - changed
Input schema / properties / work_completed_this_period / descriptionPrevious value: -"The amount of work completed this period"New value: +"JSON request body field — the amount of work completed this period" - changed
Input schema / properties / work_completed_this_period_quantity / descriptionPrevious value: -"Work completed this period quantity (unit accounting contract only)"New value: +"JSON request body field — work completed this period quantity (unit accounting contract only)"
- Removed
update_requisition_subcontractor_invoice_v1_1 - Changed
update_requisition_subcontractor_invoice_whole_change_order_item11 fields changed- changed
Input schema / properties / comment / descriptionPrevious value: -"Comment for the Whole Change Order Item"New value: +"JSON request body field — comment for the Whole Change Order Item" - changed
Input schema / properties / id / descriptionPrevious value: -"Whole Change Order Item ID"New value: +"URL path parameter — whole Change Order Item ID" - changed
Input schema / properties / materials_presently_stored / descriptionPrevious value: -"The amount of materials presently stored"New value: +"JSON request body field — the amount of materials presently stored" - changed
Input schema / properties / materials_stored_retainage_currently_retained / descriptionPrevious value: -"Materials stored retainage amount currently retained"New value: +"JSON request body field — materials stored retainage amount currently retained" - changed
Input schema / properties / requisition_id / descriptionPrevious value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID" - changed
Input schema / properties / ssr_manual_override / descriptionPrevious value: -"SSR manual override"New value: +"JSON request body field — the ssr manual override for this Commitments operation" - changed
Input schema / properties / status / descriptionPrevious value: -"Status of the Whole Change Order Item"New value: +"JSON request body field — status of the Whole Change Order Item" - changed
Input schema / properties / work_completed_retainage_released_this_period / descriptionPrevious value: -"The amount of work completed retainage released this period"New value: +"JSON request body field — the amount of work completed retainage released this period" - changed
Input schema / properties / work_completed_retainage_retained_this_period / descriptionPrevious value: -"Work completed retainage amount retained this period"New value: +"JSON request body field — work completed retainage amount retained this period" - changed
Input schema / properties / work_completed_this_period / descriptionPrevious value: -"The amount of work completed this period"New value: +"JSON request body field — the amount of work completed this period" - changed
Input schema / properties / work_completed_this_period_quantity / descriptionPrevious value: -"Work completed this period quantity"New value: +"JSON request body field — work completed this period quantity"
- Removed
update_resource - Added
update_resource_project - Added
update_resource_v1_0 - Removed
update_resource_v1_1 - Changed
update_rfi29 fields changed- changed
Input schema / properties / accepted / descriptionPrevious value: -"The Accepted status of the RFI - closes or opens an RFI"New value: +"JSON request body field — the Accepted status of the RFI - closes or opens an RFI" - changed
Input schema / properties / assignee_id / descriptionPrevious value: -"The ID of the Assignee User. Note: not required if the creator is an admin and the RFI is a draft.\n*Only admin users can set this field\nDEPRECATED. Please use assignee_ids instead"New value: +"JSON request body field — the ID of the Assignee User. Note: not required if the creator is an admin and the RFI is a draft.\n*Only admin users can set this field\nDEPRECATED. Please use assignee_ids instead" - changed
Input schema / properties / assignee_ids / descriptionPrevious value: -"An array of IDs of the Assignees of the RFI\n*Only admin users can set this field\n**If this param is not provided, the assigned_id will be used instead"New value: +"JSON request body field — an array of IDs of the Assignees of the RFI\n*Only admin users can set this field\n**If this param is not provided, the assigned_id will be used instead" - changed
Input schema / properties / ball_in_court_id / descriptionPrevious value: -"The ID of the Ball in Court of the RFI. This field is DEPRECATED as of March 31, 2019 and will no longer be supported as of October 1, 2019."New value: +"JSON request body field — the ID of the Ball in Court of the RFI. This field is DEPRECATED as of March 31, 2019 and will no longer be supported as of October 1, 2019." - changed
Input schema / properties / cost_code_id / descriptionPrevious value: -"The ID of the Cost Code of the RFI"New value: +"JSON request body field — the ID of the Cost Code of the RFI" - changed
Input schema / properties / cost_impact / descriptionPrevious value: -"The Cost Impact of the RFI"New value: +"JSON request body field — the Cost Impact of the RFI" - changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / custom_textfield_1 / descriptionPrevious value: -"The Custom Textfield 1 of the RFI"New value: +"JSON request body field — the Custom Textfield 1 of the RFI" - changed
Input schema / properties / custom_textfield_2 / descriptionPrevious value: -"The Custom Textfield 2 of the RFI"New value: +"JSON request body field — the Custom Textfield 2 of the RFI" - changed
Input schema / properties / distribution_ids / descriptionPrevious value: -"An array of IDs of the Distributions of the RFI"New value: +"JSON request body field — an array of IDs of the Distributions of the RFI" - changed
Input schema / properties / draft / descriptionPrevious value: -"The Draft status of the RFI (Can only be changed on draft RFIs)"New value: +"JSON request body field — the Draft status of the RFI (Can only be changed on draft RFIs)" - changed
Input schema / properties / drawing_number / descriptionPrevious value: -"The Drawing Number of the RFI"New value: +"JSON request body field — the Drawing Number of the RFI" - changed
Input schema / properties / due_date / descriptionPrevious value: -"The Due Date of the RFI\n*Only admin users can set this field"New value: +"JSON request body field — the Due Date of the RFI\n*Only admin users can set this field" - changed
Input schema / properties / id / descriptionPrevious value: -"RFI ID"New value: +"URL path parameter — unique identifier of the RFI resource" - changed
Input schema / properties / location_id / descriptionPrevious value: -"The ID of the Location of the RFI"New value: +"JSON request body field — the ID of the Location of the RFI" - changed
Input schema / properties / number / descriptionPrevious value: -"The Number of the RFI\n*This field will be auto-populated if the RFI is not draft"New value: +"JSON request body field — the Number of the RFI\n*This field will be auto-populated if the RFI is not draft" - changed
Input schema / properties / private / descriptionPrevious value: -"The Private status of the RFI"New value: +"JSON request body field — the Private status of the RFI" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / project_stage_id / descriptionPrevious value: -"The ID of the Project Stage of the RFI\n*If Number By Stage is enabled in RFI settings, this will add the prefix of the project stage to the full number of the RFI."New value: +"JSON request body field — the ID of the Project Stage of the RFI\n*If Number By Stage is enabled in RFI settings, this will add the prefix of the project stage to the full number of the RFI." - changed
Input schema / properties / question / descriptionPrevious value: -"The Question of the RFI"New value: +"JSON request body field — the Question of the RFI" - changed
Input schema / properties / received_from_login_information_id / descriptionPrevious value: -"The ID of the Received From User of the RFI"New value: +"JSON request body field — the ID of the Received From User of the RFI" - changed
Input schema / properties / reference / descriptionPrevious value: -"The Reference of the RFI"New value: +"JSON request body field — the Reference of the RFI" - changed
Input schema / properties / required_assignee_ids / descriptionPrevious value: -"An array of IDs of the Assignees that are required to respond to the RFI * Only admin users can set this field ** IDs must also be present in assignee_ids\n"New value: +"JSON request body field — an array of IDs of the Assignees that are required to respond to the RFI * Only admin users can set this field ** IDs must also be present in assignee_ids\n" - changed
Input schema / properties / responsible_contractor_id / descriptionPrevious value: -"The ID of the Responsible Contractor Vendor of the RFI"New value: +"JSON request body field — the ID of the Responsible Contractor Vendor of the RFI" - changed
Input schema / properties / rfi_manager_id / descriptionPrevious value: -"The ID of the RFI Manager User of the RFI\n*Only admin users (or standard users, if the project's configuration allows for it) can set this field"New value: +"JSON request body field — the ID of the RFI Manager User of the RFI\n*Only admin users (or standard users, if the project's configuration allows for it) can set this field" - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / schedule_impact / descriptionPrevious value: -"The Schedule Impact of the RFI"New value: +"JSON request body field — the Schedule Impact of the RFI" - changed
Input schema / properties / specification_section_id / descriptionPrevious value: -"The ID of the Specification Section of the RFI"New value: +"JSON request body field — the ID of the Specification Section of the RFI" - changed
Input schema / properties / subject / descriptionPrevious value: -"The Subject of the RFI"New value: +"JSON request body field — the Subject of the RFI"
- Changed
update_rfi_reply4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Reply ID"New value: +"URL path parameter — unique identifier of the RFI resource" - changed
Input schema / properties / official / descriptionPrevious value: -"Official Status"New value: +"JSON request body field — official Status" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / rfi_id / descriptionPrevious value: -"RFI ID"New value: +"URL path parameter — unique identifier of the rfi"
- Changed
update_rfq4 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / rfq / descriptionPrevious value: -"rfq"New value: +"JSON request body field — the rfq for this Commitments operation"
- Changed
update_rfq_quote5 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract" - changed
Input schema / properties / id / descriptionPrevious value: -"RFQ Quote ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / rfq_id / descriptionPrevious value: -"RFQ ID"New value: +"URL path parameter — unique identifier of the rfq" - changed
Input schema / properties / rfq_quote / descriptionPrevious value: -"rfq_quote"New value: +"JSON request body field — the rfq quote for this Commitments operation"
- Changed
update_rfq_response5 fields changed- changed
Input schema / properties / contract_id / descriptionPrevious value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / rfq_id / descriptionPrevious value: -"RFQ ID"New value: +"URL path parameter — unique identifier of the rfq" - changed
Input schema / properties / rfq_response / descriptionPrevious value: -"rfq_response"New value: +"JSON request body field — the rfq response for this Commitments operation"
- Changed
update_rounding_configuration3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / rule / descriptionPrevious value: -"Rule to apply to rounding. Options are 'up', 'down', 'nearest', and 'favor_employee'"New value: +"JSON request body field — rule to apply to rounding. Options are 'up', 'down', 'nearest', and 'favor_employee'" - changed
Input schema / properties / time_increment / descriptionPrevious value: -"Time increment available for Timecard Entries. Options are 5, 6, 10, and 15"New value: +"JSON request body field — time increment available for Timecard Entries. Options are 5, 6, 10, and 15"
- Changed
update_safety_violation_log4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Safety Violation Log Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]..."New value: +"JSON request body field — safety Violation Log Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]..." - changed
Input schema / properties / id / descriptionPrevious value: -"Safety Violation Log ID"New value: +"URL path parameter — safety Violation Log ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / safety_violation_log / descriptionPrevious value: -"safety_violation_log"New value: +"JSON request body field — safety_violation_log"
- Changed
update_schedule_integration_type2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Schedule Type belongs to"New value: +"JSON request body field — the ID of the Project the Schedule Type belongs to" - changed
Input schema / properties / schedule_type / descriptionPrevious value: -"Schedule Type object"New value: +"JSON request body field — schedule Type object"
- Changed
update_schedule_metadata2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Schedule Type belongs to"New value: +"JSON request body field — the ID of the Project the Schedule Type belongs to" - changed
Input schema / properties / type / descriptionPrevious value: -"Schedule Type object"New value: +"JSON request body field — schedule Type object"
- Added
update_specification_area - Removed
update_specification_area_v2_1 - Added
update_specification_configurations - Removed
update_specification_configurations_v2_1 - Added
update_stamp - Removed
update_stamp_v2_0 - Changed
update_standard_cost_code5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource" - changed
Input schema / properties / standard_cost_code / descriptionPrevious value: -"standard_cost_code"New value: +"JSON request body field — the standard cost code for this Work Breakdown Structure operation" - changed
Input schema / properties / standard_cost_code_list_id / descriptionPrevious value: -"Standard Cost Code List ID"New value: +"JSON request body field — standard Cost Code List ID" - changed
Input schema / properties / view / descriptionPrevious value: -"The 'default' view only returns id and standard_cost_code_list_id. The 'compact' view also includes\norigin_id. The 'extended' view includes the more complete list of attributes shown below. The 'ex..."New value: +"Query string parameter — the 'default' view only returns id and standard_cost_code_list_id. The 'compact' view also includes\norigin_id. The 'extended' view includes the more complete list of attributes shown below. The 'ex..."
- Changed
update_standard_cost_code_list3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company" - changed
Input schema / properties / id / descriptionPrevious value: -"Unique identifier for the Standard Cost Code"New value: +"URL path parameter — unique identifier for the Standard Cost Code" - changed
Input schema / properties / standard_cost_code_list / descriptionPrevious value: -"Standard Cost Code List Updates"New value: +"JSON request body field — standard Cost Code List Updates"
- Added
update_status_of_equipment_company - Removed
update_status_of_equipment_company_v2_1 - Added
update_status_of_equipment_project - Removed
update_status_of_equipment_project_v2_1 - Changed
update_sub_job3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / sub_job / descriptionPrevious value: -"sub_job"New value: +"JSON request body field — the sub job for this Work Breakdown Structure operation"
- Changed
update_subcategory_name5 fields changed- changed
Input schema / properties / category_id / descriptionPrevious value: -"Unique identifier for the Category."New value: +"URL path parameter — unique identifier for the Category." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..."New value: +"URL path parameter — unique identifier for the company. This parameter accepts both formats:\n- **Recommended**: Procore company ID (integer) - Use this for new integrations\n- Legacy: LaborChart UUID format (uuid string..." - changed
Input schema / properties / name / descriptionPrevious value: -"The new name for the Subcategory."New value: +"JSON request body field — the new name for the Subcategory." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project" - changed
Input schema / properties / subcategory_id / descriptionPrevious value: -"Unique identifier for the Subcategory."New value: +"URL path parameter — unique identifier for the Subcategory."
- Changed
update_submittal32 fields changed- changed
Input schema / properties / actual_delivery_date / descriptionPrevious value: -"The Actual Delivery Date of the Submittal\n*This field can only be set if the project has submittal delivery information enabled"New value: +"JSON request body field — the Actual Delivery Date of the Submittal\n*This field can only be set if the project has submittal delivery information enabled" - changed
Input schema / properties / attachments / descriptionPrevious value: -"Submittal attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — submittal attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / confirmed_delivery_date / descriptionPrevious value: -"The Confirmed Delivery Date of the Submittal\n*This field can only be set if the project has submittal delivery information enabled"New value: +"JSON request body field — the Confirmed Delivery Date of the Submittal\n*This field can only be set if the project has submittal delivery information enabled" - changed
Input schema / properties / cost_code_id / descriptionPrevious value: -"The ID of the Cost Code of the Submittal\n*This field can only be set by admins"New value: +"JSON request body field — the ID of the Cost Code of the Submittal\n*This field can only be set by admins" - changed
Input schema / properties / custom_textarea_1 / descriptionPrevious value: -"*This field can only be set by admins\n"New value: +"JSON request body field — *This field can only be set by admins\n" - changed
Input schema / properties / custom_textfield_1 / descriptionPrevious value: -"*This field can only be set by admins\n"New value: +"JSON request body field — *This field can only be set by admins\n" - changed
Input schema / properties / description / descriptionPrevious value: -"The Description of the Submittal"New value: +"JSON request body field — the Description of the Submittal" - changed
Input schema / properties / design_team_review_time / descriptionPrevious value: -"The Design Team Review Time of the Submittal (in days)\n*This field can only be set if the project has schedule calculations enabled"New value: +"JSON request body field — the Design Team Review Time of the Submittal (in days)\n*This field can only be set if the project has schedule calculations enabled" - changed
Input schema / properties / distribution_member_ids / descriptionPrevious value: -"The IDs of the Distribution Members of the Submittal"New value: +"JSON request body field — the IDs of the Distribution Members of the Submittal" - changed
Input schema / properties / due_date / descriptionPrevious value: -"The Due Date of the Submittal\n*This field is not available to be set if sequential approvers is enabled"New value: +"JSON request body field — the Due Date of the Submittal\n*This field is not available to be set if sequential approvers is enabled" - changed
Input schema / properties / id / descriptionPrevious value: -"Submittal ID"New value: +"URL path parameter — unique identifier of the Submittals resource" - changed
Input schema / properties / internal_review_time / descriptionPrevious value: -"The Internal Review Time of the Submtital (in days)\n*This field can only be set if the project has schedule calculations enabled"New value: +"JSON request body field — the Internal Review Time of the Submtital (in days)\n*This field can only be set if the project has schedule calculations enabled" - changed
Input schema / properties / issue_date / descriptionPrevious value: -"The Issue Date of the Submittal\n*This field can only be set by admins"New value: +"JSON request body field — the Issue Date of the Submittal\n*This field can only be set by admins" - changed
Input schema / properties / lead_time / descriptionPrevious value: -"The Lead Time of the Submittal (in days)\n*This field can only be set by admins or if the project has schedule calculations enabled"New value: +"JSON request body field — the Lead Time of the Submittal (in days)\n*This field can only be set by admins or if the project has schedule calculations enabled" - changed
Input schema / properties / location_id / descriptionPrevious value: -"The Location of the Submittal"New value: +"JSON request body field — the Location of the Submittal" - changed
Input schema / properties / number / descriptionPrevious value: -"The Number of the Submittal"New value: +"JSON request body field — the Number of the Submittal" - changed
Input schema / properties / private / descriptionPrevious value: -"Whether the Submittal is Private or not"New value: +"JSON request body field — whether the Submittal is Private or not" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / prostore_file_ids / descriptionPrevious value: -"An array of Prostore File IDs. The Prostore Files will be associated with the Submittal as attachments."New value: +"JSON request body field — an array of Prostore File IDs. The Prostore Files will be associated with the Submittal as attachments." - changed
Input schema / properties / received_date / descriptionPrevious value: -"The Received Date of the Submittal\n*This field can only be set by admins"New value: +"JSON request body field — the Received Date of the Submittal\n*This field can only be set by admins" - changed
Input schema / properties / received_from_id / descriptionPrevious value: -"The Received From of the Submittal"New value: +"JSON request body field — the Received From of the Submittal" - changed
Input schema / properties / required_on_site_date / descriptionPrevious value: -"The Required On Site Date of the Submittal\n*This field can only be set by admins or if the project has schedule calculations enabled"New value: +"JSON request body field — the Required On Site Date of the Submittal\n*This field can only be set by admins or if the project has schedule calculations enabled" - changed
Input schema / properties / responsible_contractor_id / descriptionPrevious value: -"The Responsible Contractor of the Submittal"New value: +"JSON request body field — the Responsible Contractor of the Submittal" - changed
Input schema / properties / revision / descriptionPrevious value: -"The Revision of the Submittal"New value: +"JSON request body field — the Revision of the Submittal" - changed
Input schema / properties / scheduled_task_id / descriptionPrevious value: -"The ID of the Scheduled Task of the Submittal\n*This field can only be set if the project has submittal delivery information enabled and the user has permissions to view the calendar tool"New value: +"JSON request body field — the ID of the Scheduled Task of the Submittal\n*This field can only be set if the project has submittal delivery information enabled and the user has permissions to view the calendar tool" - changed
Input schema / properties / scheduled_task_key / descriptionPrevious value: -"The key of the Scheduled Task of the Submittal. Note that use of this parameter is deprecated. Please use `scheduled_task_id` instead.\n*This field can only be set if the project has submittal deliv..."New value: +"JSON request body field — the key of the Scheduled Task of the Submittal. Note that use of this parameter is deprecated. Please use `scheduled_task_id` instead.\n*This field can only be set if the project has submittal deliv..." - changed
Input schema / properties / send_emails / descriptionPrevious value: -"Designates whether or not emails will be sent (default false)"New value: +"Query string parameter — designates whether or not emails will be sent (default false)" - changed
Input schema / properties / source_submittal_log_id / descriptionPrevious value: -"The ID of the Source Submittal.\n*By setting this field, the submittal will be created as a revision of source submittal."New value: +"JSON request body field — the ID of the Source Submittal.\n*By setting this field, the submittal will be created as a revision of source submittal." - changed
Input schema / properties / specification_section_id / descriptionPrevious value: -"The ID of the Specification Section of the Submittal"New value: +"JSON request body field — the ID of the Specification Section of the Submittal" - changed
Input schema / properties / status_id / descriptionPrevious value: -"The ID of the Submittal Status of the Submittal\n*This field can only be set by admins"New value: +"JSON request body field — the ID of the Submittal Status of the Submittal\n*This field can only be set by admins" - changed
Input schema / properties / sub_job_id / descriptionPrevious value: -"The ID of the Sub Job of the Submittal"New value: +"JSON request body field — the ID of the Sub Job of the Submittal" - changed
Input schema / properties / submit_by / descriptionPrevious value: -"The Submit By Date of the Submittal\n*This field can only be set by admins"New value: +"JSON request body field — the Submit By Date of the Submittal\n*This field can only be set by admins"
- Changed
update_submittal_approver13 fields changed- changed
Input schema / properties / associated_attachments / descriptionPrevious value: -"Submital Approver's Attachments to be carried forward.\nThe Attachments specified here will be carried forward to the next person in the workflow."New value: +"JSON request body field — submital Approver's Attachments to be carried forward.\nThe Attachments specified here will be carried forward to the next person in the workflow." - changed
Input schema / properties / attachment_ids / descriptionPrevious value: -"Submittal Approver's Attachment IDs.\nThe Attachments specified here will be saved as attachments through the request."New value: +"JSON request body field — submittal Approver's Attachment IDs.\nThe Attachments specified here will be saved as attachments through the request." - changed
Input schema / properties / attachments_to_upload / descriptionPrevious value: -"Submittal Approver's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments_t..."New value: +"JSON request body field — submittal Approver's Attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments_t..." - changed
Input schema / properties / comment / descriptionPrevious value: -"comment"New value: +"JSON request body field — the comment for this Submittals operation" - changed
Input schema / properties / forward_to / descriptionPrevious value: -"Params used only when forwarding for review. Designates who the new reviewer is and what their due date is"New value: +"JSON request body field — params used only when forwarding for review. Designates who the new reviewer is and what their due date is" - changed
Input schema / properties / id / descriptionPrevious value: -"Submittal Approver ID"New value: +"URL path parameter — submittal Approver ID" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / returned_date / descriptionPrevious value: -"Parameter is only available to admins."New value: +"JSON request body field — parameter is only available to admins." - changed
Input schema / properties / send_emails / descriptionPrevious value: -"Designates whether or not emails will be sent (default false)"New value: +"Query string parameter — designates whether or not emails will be sent (default false)" - changed
Input schema / properties / sent_date / descriptionPrevious value: -"Parameter is only available to admins."New value: +"JSON request body field — parameter is only available to admins." - changed
Input schema / properties / submittal_id / descriptionPrevious value: -"Submittal ID"New value: +"Query string parameter — unique identifier of the submittal" - changed
Input schema / properties / submittal_response_id / descriptionPrevious value: -"submittal_response_id"New value: +"JSON request body field — submittal_response_id" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
- Removed
update_submittal_v1_1 - Changed
update_task3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the task"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"ID of the project this task belongs to."New value: +"JSON request body field — iD of the project this task belongs to." - changed
Input schema / properties / task / descriptionPrevious value: -"Task object."New value: +"JSON request body field — task object."
- Changed
update_task_item20 fields changed- changed
Input schema / properties / assigned_id / descriptionPrevious value: -"Assignee ID"New value: +"JSON request body field — unique identifier of the assigned" - changed
Input schema / properties / assignee_ids / descriptionPrevious value: -"Assignee IDs"New value: +"JSON request body field — array of assignee identifiers" - changed
Input schema / properties / attachments / descriptionPrevious value: -"Task Item attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files."New value: +"JSON request body field — task Item attachments.\nTo upload attachments you must upload the entire payload as `multipart/form-data` content-type and\nspecify each parameter as form-data together with `attachments[]` as files." - changed
Input schema / properties / description / descriptionPrevious value: -"Description"New value: +"JSON request body field — the description for this Tasks operation" - changed
Input schema / properties / distribution_member_ids / descriptionPrevious value: -"Distribution Member IDs"New value: +"JSON request body field — distribution Member IDs" - changed
Input schema / properties / document_management_document_revision_ids / descriptionPrevious value: -"PDM document to attach to the response"New value: +"JSON request body field — pDM document to attach to the response" - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / due_date / descriptionPrevious value: -"Date and time due"New value: +"JSON request body field — due date in YYYY-MM-DD format" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / id / descriptionPrevious value: -"Task Item ID"New value: +"URL path parameter — unique identifier of the Tasks resource" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / number / descriptionPrevious value: -"Number"New value: +"JSON request body field — the number for this Tasks operation" - changed
Input schema / properties / private / descriptionPrevious value: -"Privacy flag"New value: +"JSON request body field — privacy flag" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project." - changed
Input schema / properties / prostore_file_ids / descriptionPrevious value: -"Prostore File IDs"New value: +"JSON request body field — array of prostore file identifiers" - changed
Input schema / properties / status / descriptionPrevious value: -"Status"New value: +"JSON request body field — the status for this Tasks operation" - changed
Input schema / properties / task_item_category_id / descriptionPrevious value: -"The task item category to associate with the task item."New value: +"JSON request body field — the task item category to associate with the task item." - changed
Input schema / properties / title / descriptionPrevious value: -"Title"New value: +"JSON request body field — the title for this Tasks operation" - changed
Input schema / properties / upload_ids / descriptionPrevious value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
- Changed
update_tax_code9 fields changed- changed
Input schema / properties / archived / descriptionPrevious value: -"Set to true if this tax code has been archived"New value: +"JSON request body field — set to true if this tax code has been archived" - changed
Input schema / properties / code / descriptionPrevious value: -"The Tax Code"New value: +"JSON request body field — the Tax Code" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / default_tax_code / descriptionPrevious value: -"Set to true if this tax code is default tax code"New value: +"JSON request body field — set to true if this tax code is default tax code" - changed
Input schema / properties / description / descriptionPrevious value: -"The Description of the Tax Code"New value: +"JSON request body field — the Description of the Tax Code" - changed
Input schema / properties / id / descriptionPrevious value: -"The Tax Code ID"New value: +"URL path parameter — unique identifier of the Tax resource" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"Additional Third-party Metadata for the Tax Code. Note: This is a free-form text field."New value: +"JSON request body field — additional Third-party Metadata for the Tax Code. Note: This is a free-form text field." - changed
Input schema / properties / origin_id / descriptionPrevious value: -"The Third-party ID of the Tax Code"New value: +"JSON request body field — the Third-party ID of the Tax Code" - changed
Input schema / properties / rate1 / descriptionPrevious value: -"Rate to apply for first Tax Type"New value: +"JSON request body field — rate to apply for first Tax Type"
- Changed
update_tax_type6 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company." - changed
Input schema / properties / description / descriptionPrevious value: -"The Description of the Tax Type"New value: +"JSON request body field — the Description of the Tax Type" - changed
Input schema / properties / id / descriptionPrevious value: -"The Tax Type ID"New value: +"URL path parameter — unique identifier of the Tax resource" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Tax Type"New value: +"JSON request body field — the Name of the Tax Type" - changed
Input schema / properties / origin_data / descriptionPrevious value: -"Additional Third-party Metadata for the Tax Type. Note: This is a free-form text field."New value: +"JSON request body field — additional Third-party Metadata for the Tax Type. Note: This is a free-form text field." - changed
Input schema / properties / origin_id / descriptionPrevious value: -"The Third-party ID of the Tax Type"New value: +"JSON request body field — the Third-party ID of the Tax Type"
- Added
update_the_change_event_settings_for_the_project - Removed
update_the_change_event_settings_for_the_project_v2_0 - Changed
update_the_compliance_information_for_a_purchase_order_contract6 fields changed- changed
Input schema / properties / compliance_notes / descriptionPrevious value: -"compliance_notes"New value: +"JSON request body field — the compliance notes for this Commitments operation" - changed
Input schema / properties / compliance_status / descriptionPrevious value: -"compliance_status"New value: +"JSON request body field — the compliance status for this Commitments operation" - changed
Input schema / properties / contract_id / descriptionPrevious value: -"identifier for the work order contract"New value: +"URL path parameter — identifier for the work order contract" - changed
Input schema / properties / insurance_notes / descriptionPrevious value: -"insurance_notes"New value: +"JSON request body field — the insurance notes for this Commitments operation" - changed
Input schema / properties / insurance_status / descriptionPrevious value: -"insurance_status"New value: +"JSON request body field — the insurance status for this Commitments operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
update_the_compliance_information_for_a_work_order_contract6 fields changed- changed
Input schema / properties / compliance_notes / descriptionPrevious value: -"compliance_notes"New value: +"JSON request body field — the compliance notes for this Commitments operation" - changed
Input schema / properties / compliance_status / descriptionPrevious value: -"compliance_status"New value: +"JSON request body field — the compliance status for this Commitments operation" - changed
Input schema / properties / contract_id / descriptionPrevious value: -"identifier for the work order contract"New value: +"URL path parameter — identifier for the work order contract" - changed
Input schema / properties / insurance_notes / descriptionPrevious value: -"insurance_notes"New value: +"JSON request body field — the insurance notes for this Commitments operation" - changed
Input schema / properties / insurance_status / descriptionPrevious value: -"insurance_status"New value: +"JSON request body field — the insurance status for this Commitments operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Added
update_the_due_date_for_a_requisition_subcontractor_invoice - Removed
update_the_due_date_for_a_requisition_subcontractor_invoice_v2_0 - Changed
update_the_state_of_a_daily_log_header6 fields changed- changed
Input schema / properties / app_name / descriptionPrevious value: -"The name of app which issues this request. If app name is 'web' and request completes day then web filters of user which completes day are applied to pdf which is sent to distribution users."New value: +"Query string parameter — the name of app which issues this request. If app name is 'web' and request completes day then web filters of user which completes day are applied to pdf which is sent to distribution users." - changed
Input schema / properties / completed / descriptionPrevious value: -"Set the completion status for the day"New value: +"JSON request body field — set the completion status for the day" - changed
Input schema / properties / distributed / descriptionPrevious value: -"Distribute the Daily Log for the day"New value: +"JSON request body field — distribute the Daily Log for the day" - changed
Input schema / properties / id / descriptionPrevious value: -"The id of the requested Daily Log Header"New value: +"Query string parameter — the id of the requested Daily Log Header" - changed
Input schema / properties / log_date / descriptionPrevious value: -"The log date for the requested Daily Log Header"New value: +"Query string parameter — the log date for the requested Daily Log Header" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
update_time_and_material_timecard8 fields changed- changed
Input schema / properties / hours_worked / descriptionPrevious value: -"Total hours worked"New value: +"JSON request body field — total hours worked" - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the project to get the time and material timecards for"New value: +"URL path parameter — iD of the project to get the time and material timecards for" - changed
Input schema / properties / login_information_id / descriptionPrevious value: -"ID of the person the timecard is being created for"New value: +"JSON request body field — iD of the person the timecard is being created for" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / time_and_material_entry_id / descriptionPrevious value: -"Time & Material Entry Id the timecard is associated with"New value: +"JSON request body field — time & Material Entry Id the timecard is associated with" - changed
Input schema / properties / timecard_time_type_id / descriptionPrevious value: -"Type id for the type of timecard being created"New value: +"JSON request body field — type id for the type of timecard being created" - changed
Input schema / properties / work_classification_id / descriptionPrevious value: -"ID of the worker's work classification"New value: +"JSON request body field — iD of the worker's work classification"
- Changed
update_timecard_entries3 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / timecard_entries / descriptionPrevious value: -"Timesheet object"New value: +"JSON request body field — timesheet object" - changed
Input schema / properties / timesheet_id / descriptionPrevious value: -"ID of Timesheet"New value: +"JSON request body field — unique identifier of the timesheet"
- Changed
update_timecard_entry3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Timecard Entry belongs to"New value: +"JSON request body field — the ID of the Project the Timecard Entry belongs to" - changed
Input schema / properties / timecard_entry / descriptionPrevious value: -"Timecard Entry object"New value: +"JSON request body field — timecard Entry object"
- Changed
update_timecard_entry_company4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the Timecard Entry belongs to"New value: +"JSON request body field — the ID of the Project the Timecard Entry belongs to" - changed
Input schema / properties / timecard_entry / descriptionPrevious value: -"Timecard Entry object"New value: +"JSON request body field — timecard Entry object"
- Changed
update_timecard_entry_project21 fields changed- changed
Input schema / properties / billable / descriptionPrevious value: -"The billable status of the timecard entry. Must be either true or false."New value: +"JSON request body field — the billable status of the timecard entry. Must be either true or false." - changed
Input schema / properties / clock_in_id / descriptionPrevious value: -"The ID of the clock in GPS position corresponding to the timecard entry."New value: +"JSON request body field — the ID of the clock in GPS position corresponding to the timecard entry." - changed
Input schema / properties / clock_out_id / descriptionPrevious value: -"The ID of the clock out GPS position corresponding to the timecard entry."New value: +"JSON request body field — the ID of the clock out GPS position corresponding to the timecard entry." - changed
Input schema / properties / cost_code_id / descriptionPrevious value: -"The ID of the cost code corresponding to the timecard entry."New value: +"JSON request body field — the ID of the cost code corresponding to the timecard entry." - changed
Input schema / properties / daily_log_segment_id / descriptionPrevious value: -"Daily Log Segment ID"New value: +"JSON request body field — daily Log Segment ID" - changed
Input schema / properties / date / descriptionPrevious value: -"The date of the timecard dntry in ISO 8601 format."New value: +"JSON request body field — the date of the timecard dntry in ISO 8601 format." - changed
Input schema / properties / datetime / descriptionPrevious value: -"The date and time of the record. This property is mutually exclusive with the Date property."New value: +"JSON request body field — the date and time of the record. This property is mutually exclusive with the Date property." - changed
Input schema / properties / description / descriptionPrevious value: -"The description of the timecard entry."New value: +"JSON request body field — the description of the timecard entry." - changed
Input schema / properties / hours / descriptionPrevious value: -"Total number of hours worked (excluding breaks) for the timecard entry. This property is not applicable if the timesheet time entry is configured for start time and stop time."New value: +"JSON request body field — total number of hours worked (excluding breaks) for the timecard entry. This property is not applicable if the timesheet time entry is configured for start time and stop time." - changed
Input schema / properties / id / descriptionPrevious value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry" - changed
Input schema / properties / line_item_type_id / descriptionPrevious value: -"The ID of the line item type pertaining to the time card entry."New value: +"JSON request body field — the ID of the line item type pertaining to the time card entry." - changed
Input schema / properties / login_information_id / descriptionPrevious value: -"The ID of the login information corresponding to the timecard entry."New value: +"JSON request body field — the ID of the login information corresponding to the timecard entry." - changed
Input schema / properties / lunch_time / descriptionPrevious value: -"The duration of the lunch break, in minutes, for the timecard entry. This property is only applicable if the tmesheet time entry is configured for start time and stop time."New value: +"JSON request body field — the duration of the lunch break, in minutes, for the timecard entry. This property is only applicable if the tmesheet time entry is configured for start time and stop time." - changed
Input schema / properties / origin_data / descriptionPrevious value: -"The value of the related external data."New value: +"JSON request body field — the value of the related external data." - changed
Input schema / properties / origin_id / descriptionPrevious value: -"The ID of the related external data."New value: +"JSON request body field — the ID of the related external data." - changed
Input schema / properties / party_id / descriptionPrevious value: -"The ID of the Party of the Timecard Entry"New value: +"JSON request body field — the ID of the Party of the Timecard Entry" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / time_in / descriptionPrevious value: -"The start time of the timecard entry in ISO 8601 format. This property is only applicable if the timesheet time entry is configured for start time and stop time."New value: +"JSON request body field — the start time of the timecard entry in ISO 8601 format. This property is only applicable if the timesheet time entry is configured for start time and stop time." - changed
Input schema / properties / time_out / descriptionPrevious value: -"The stop time of the timecard entry in ISO 8601 format. This property is only applicable if the timesheet time entry is configured for start time and stop time."New value: +"JSON request body field — the stop time of the timecard entry in ISO 8601 format. This property is only applicable if the timesheet time entry is configured for start time and stop time." - changed
Input schema / properties / timecard_time_type_id / descriptionPrevious value: -"The ID of the timecard time type corresponding to the timecard entry."New value: +"JSON request body field — the ID of the timecard time type corresponding to the timecard entry." - changed
Input schema / properties / timesheet_id / descriptionPrevious value: -"The ID of the timesheet corresponding to the timecard entry."New value: +"JSON request body field — the ID of the timesheet corresponding to the timecard entry."
- Changed
update_timecard_entry_signature_project3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"The ID of the timecard entry."New value: +"URL path parameter — the ID of the timecard entry." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / signature_id / descriptionPrevious value: -"The signature ID to be added to the timecard entry."New value: +"JSON request body field — the signature ID to be added to the timecard entry."
- Changed
update_timecard_time_type3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Id of the Timecard Time Type"New value: +"URL path parameter — id of the Timecard Time Type" - changed
Input schema / properties / pay_rate / descriptionPrevious value: -"The pay_rate of the Timecard Time Type"New value: +"JSON request body field — the pay_rate of the Timecard Time Type"
- Added
update_timeline_event - Removed
update_timeline_event_v2_0 - Removed
update_timesheet - Added
update_timesheet_project - Added
update_timesheet_project_v1_0 - Changed
update_timesheet_status2 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / timesheets / descriptionPrevious value: -"array of Timesheet objects"New value: +"JSON request body field — array of Timesheet objects"
- Changed
update_timesheet_to_budget_configuration4 fields changed- changed
Input schema / properties / apply_to_existing / descriptionPrevious value: -"Whether the passed in Line Item Type ID should be applied to existing timecard entries (erp or not)"New value: +"JSON request body field — whether the passed in Line Item Type ID should be applied to existing timecard entries (erp or not)" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / erp_default_line_item_type_id / descriptionPrevious value: -"ERP Line Item Type ID"New value: +"JSON request body field — eRP Line Item Type ID" - changed
Input schema / properties / line_item_type_id / descriptionPrevious value: -"Line Item Type ID"New value: +"JSON request body field — unique identifier of the line item type"
- Removed
update_timesheet_v1_1 - Changed
update_todo3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the todo"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"The ID of the Project the ToDo belongs to"New value: +"JSON request body field — the ID of the Project the ToDo belongs to" - changed
Input schema / properties / todo / descriptionPrevious value: -"ToDo object"New value: +"JSON request body field — toDo object"
- Changed
update_unit_of_measure4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Unit of Measure ID"New value: +"URL path parameter — unique identifier of the Units of Measure resource" - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the Unit of Measure"New value: +"JSON request body field — name of the Unit of Measure" - changed
Input schema / properties / uom_category_id / descriptionPrevious value: -"ID of the Unit of Measure Category"New value: +"JSON request body field — iD of the Unit of Measure Category"
- Added
update_unmanaged_equipment_project - Removed
update_unmanaged_equipment_project_v2_0 - Changed
update_user_permission3 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"JSON request body field — unique identifier of the Field Productivity resource" - changed
Input schema / properties / user_access_level_id / descriptionPrevious value: -"User Access Level ID - '1' for None, '2' for Read-Only, '3' for Standard, '4' for Admin"New value: +"JSON request body field — user Access Level ID - '1' for None, '2' for Read-Only, '3' for Standard, '4' for Admin"
- Changed
update_user_project_roles3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Company Role"New value: +"URL path parameter — iD of the Company Role" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / user_ids / descriptionPrevious value: -"User IDs to associate with the Project Role"New value: +"JSON request body field — user IDs to associate with the Project Role"
- Changed
update_vendor_project_roles3 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID of the Project Role"New value: +"URL path parameter — iD of the Project Role" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / vendor_ids / descriptionPrevious value: -"Vendor IDs to associate with the Project Role"New value: +"JSON request body field — vendor IDs to associate with the Project Role"
- Changed
update_viewpoint_mapping_and_or_model_manager_viewpoint_content18 fields changed- changed
Input schema / properties / bim_file_id / descriptionPrevious value: -"Accepted but not applied on this PATCH flow."New value: +"JSON request body field — accepted but not applied on this PATCH flow." - changed
Input schema / properties / bim_model_uuid / descriptionPrevious value: -"Accepted but not applied on PATCH."New value: +"JSON request body field — accepted but not applied on PATCH." - changed
Input schema / properties / bim_view_folder_id / descriptionPrevious value: -"Accepted but not applied on this PATCH flow."New value: +"JSON request body field — accepted but not applied on this PATCH flow." - changed
Input schema / properties / camera_data / descriptionPrevious value: -"When `payload` is absent — merged into MM payload as `camera` (object or JSON string)."New value: +"JSON request body field — when `payload` is absent — merged into MM payload as `camera` (object or JSON string)." - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / coordination_issue_id / descriptionPrevious value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID" - changed
Input schema / properties / name / descriptionPrevious value: -"Passed to Model Manager viewpoint PATCH (`name`) when provided."New value: +"JSON request body field — passed to Model Manager viewpoint PATCH (`name`) when provided." - changed
Input schema / properties / payload / descriptionPrevious value: -"payload"New value: +"JSON request body field — the payload for this Coordination Issues operation" - changed
Input schema / properties / position / descriptionPrevious value: -"Sort order on the join row; send `null` to clear when supported by validation."New value: +"JSON request body field — sort order on the join row; send `null` to clear when supported by validation." - changed
Input schema / properties / primary / descriptionPrevious value: -"Sets `is_primary` on the coordination-issue viewpoint mapping."New value: +"JSON request body field — sets `is_primary` on the coordination-issue viewpoint mapping." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / redlines_data / descriptionPrevious value: -"When `payload` is absent — merged into MM payload as `markup`."New value: +"JSON request body field — when `payload` is absent — merged into MM payload as `markup`." - changed
Input schema / properties / render_mode / descriptionPrevious value: -"render_mode"New value: +"JSON request body field — the render mode for this Coordination Issues operation" - changed
Input schema / properties / scene_id / descriptionPrevious value: -"Accepted but not applied on PATCH (create-only relocation)."New value: +"JSON request body field — accepted but not applied on PATCH (create-only relocation)." - changed
Input schema / properties / sections_data / descriptionPrevious value: -"When `payload` is absent — merged into MM payload as `clipping.planes`."New value: +"JSON request body field — when `payload` is absent — merged into MM payload as `clipping.planes`." - changed
Input schema / properties / snapshot_upload_uuid / descriptionPrevious value: -"Accepted but not applied on this PATCH flow."New value: +"JSON request body field — accepted but not applied on this PATCH flow." - changed
Input schema / properties / viewpoint_id / descriptionPrevious value: -"**MM-backed:** Model Manager viewpoint UUID (`[0-9a-f-]{36}`, case-insensitive). **Legacy:** numeric\n`bim_viewpoints.id` for a join row that has `bim_viewpoint_id` (no `viewpoint_uuid`).\n"New value: +"URL path parameter — **MM-backed:** Model Manager viewpoint UUID (`[0-9a-f-]{36}`, case-insensitive). **Legacy:** numeric\n`bim_viewpoints.id` for a join row that has `bim_viewpoint_id` (no `viewpoint_uuid`).\n" - changed
Input schema / properties / visibility / descriptionPrevious value: -"visibility"New value: +"JSON request body field — the visibility for this Coordination Issues operation"
- Changed
update_visitor_log4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Visitor Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / visitor_log / descriptionPrevious value: -"visitor_log"New value: +"JSON request body field — the visitor log for this Daily Log operation"
- Changed
update_waste_log4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Waste Log Attachments are not viewable or used on web. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data togethe..."New value: +"JSON request body field — waste Log Attachments are not viewable or used on web. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data togethe..." - changed
Input schema / properties / id / descriptionPrevious value: -"Waste Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / waste_log / descriptionPrevious value: -"waste_log"New value: +"JSON request body field — the waste log for this Daily Log operation"
- Added
update_wbs_attribute_item - Removed
update_wbs_attribute_item_v2_0 - Added
update_wbs_attributes - Removed
update_wbs_attributes_v2_0 - Removed
update_weather_log - Added
update_weather_log_project - Added
update_weather_log_project_v1_0 - Removed
update_weather_log_v1_1 - Changed
update_webhooks_hook1 field changed- changed
Input schema / properties / id / descriptionPrevious value: -"Webhooks Hook ID"New value: +"URL path parameter — unique identifier of the Webhooks resource"
- Changed
update_witness_statement13 fields changed- changed
Input schema / properties / custom_field_%{custom_field_definition_id} / descriptionPrevious value: -"Value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..."New value: +"JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition.\nFor a lov_entry data_type the value passed in should be the ID of one ..." - changed
Input schema / properties / date_received / descriptionPrevious value: -"Date that the Witness Statement was received. This assumes the dates provided are in the project timezone."New value: +"JSON request body field — date that the Witness Statement was received. This assumes the dates provided are in the project timezone." - changed
Input schema / properties / drawing_revision_ids / descriptionPrevious value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response" - changed
Input schema / properties / file_version_ids / descriptionPrevious value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response" - changed
Input schema / properties / form_ids / descriptionPrevious value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response" - changed
Input schema / properties / id / descriptionPrevious value: -"Witness Statement ID"New value: +"URL path parameter — witness Statement ID" - changed
Input schema / properties / image_ids / descriptionPrevious value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response" - changed
Input schema / properties / incident_id / descriptionPrevious value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / recording / descriptionPrevious value: -"recording"New value: +"JSON request body field — the recording for this Incidents operation" - changed
Input schema / properties / statement / descriptionPrevious value: -"The account of the event by the witness in rich text form."New value: +"JSON request body field — the account of the event by the witness in rich text form." - changed
Input schema / properties / upload_uuids / descriptionPrevious value: -"Array of uploaded file UUIDs."New value: +"JSON request body field — array of uploaded file UUIDs." - changed
Input schema / properties / witness_id / descriptionPrevious value: -"Witness ID"New value: +"JSON request body field — unique identifier of the witness"
- Changed
update_work_activity4 fields changed- changed
Input schema / properties / active / descriptionPrevious value: -"Flag that denotes if the Work Activity is available for use"New value: +"JSON request body field — flag that denotes if the Work Activity is available for use" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / id / descriptionPrevious value: -"Work Activity ID"New value: +"URL path parameter — unique identifier of the Incidents resource" - changed
Input schema / properties / name / descriptionPrevious value: -"The Name of the Work Activity"New value: +"JSON request body field — the Name of the Work Activity"
- Changed
update_work_log4 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Scheduled Work Log Attachments are not viewable or used on web. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-dat..."New value: +"JSON request body field — scheduled Work Log Attachments are not viewable or used on web. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-dat..." - changed
Input schema / properties / id / descriptionPrevious value: -"Work Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / work_log / descriptionPrevious value: -"work_log"New value: +"JSON request body field — the work log for this Daily Log operation"
- Changed
update_work_order_contract5 fields changed- changed
Input schema / properties / attachments / descriptionPrevious value: -"Work Order Contract attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]`..."New value: +"JSON request body field — work Order Contract attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]`..." - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / run_configurable_validations / descriptionPrevious value: -"If true, validations are run for the corresponding Configurable Field Set."New value: +"Query string parameter — if true, validations are run for the corresponding Configurable Field Set." - changed
Input schema / properties / work_order_contract / descriptionPrevious value: -"Work Order Contract object"New value: +"JSON request body field — work Order Contract object"
- Changed
update_work_order_contract_detail_line_item4 fields changed- changed
Input schema / properties / contract_detail_line_item / descriptionPrevious value: -"The Detail Line Item object"New value: +"JSON request body field — the Detail Line Item object" - changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / work_order_contract_id / descriptionPrevious value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
- Changed
update_work_order_contract_line_item4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource" - changed
Input schema / properties / line_item / descriptionPrevious value: -"The Line Item object"New value: +"JSON request body field — the Line Item object" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / work_order_contract_id / descriptionPrevious value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
- Changed
update_work_order_contract_subcontractor_sov_status3 fields changed- changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project." - changed
Input schema / properties / status / descriptionPrevious value: -"Subcontractor SOV status. Admin users or users with granular permissions to update the contract can chan ge the status if the contract has no requisitions (sub invoices) or approved commitment chan..."New value: +"JSON request body field — subcontractor SOV status. Admin users or users with granular permissions to update the contract can chan ge the status if the contract has no requisitions (sub invoices) or approved commitment chan..." - changed
Input schema / properties / work_order_contract_id / descriptionPrevious value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
- Added
update_workflow_preset_company - Removed
update_workflow_preset_company_v2_0 - Added
update_workflow_preset_project - Removed
update_workflow_preset_project_v2_0 - Changed
updates_a_company_inspection_template_item_evidence4 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / observation / descriptionPrevious value: -"observation"New value: +"JSON request body field — the observation for this Inspections operation" - changed
Input schema / properties / photo / descriptionPrevious value: -"photo"New value: +"JSON request body field — the photo for this Inspections operation" - changed
Input schema / properties / template_item_id / descriptionPrevious value: -"Unique identifier for the inspection template item."New value: +"URL path parameter — unique identifier for the inspection template item."
- Changed
updates_a_project_inspection_template_item_evidence5 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / observation / descriptionPrevious value: -"observation"New value: +"JSON request body field — the observation for this Inspections operation" - changed
Input schema / properties / photo / descriptionPrevious value: -"photo"New value: +"JSON request body field — the photo for this Inspections operation" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project." - changed
Input schema / properties / template_item_id / descriptionPrevious value: -"Unique identifier for the inspection template item."New value: +"URL path parameter — unique identifier for the inspection template item."
- Changed
upload_schedule_file_v1_02 fields changed- changed
Input schema / properties / file / descriptionPrevious value: -"File to use as file data. Note that it's only possible to post a\n file using a multipart/form-data body (see RFC 2388). Most HTTP\n libraries will do the right thing when you pass in an open file ..."New value: +"JSON request body field — file to use as file data. Note that it's only possible to post a\n file using a multipart/form-data body (see RFC 2388). Most HTTP\n libraries will do the right thing when you pass in an open file ..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
upload_schedule_file_v1_0_22 fields changed- changed
Input schema / properties / file / descriptionPrevious value: -"File to use as file data. Note that it's only possible to post a\n file using a multipart/form-data body (see RFC 2388). Most HTTP\n libraries will do the right thing when you pass in an open file ..."New value: +"JSON request body field — file to use as file data. Note that it's only possible to post a\n file using a multipart/form-data body (see RFC 2388). Most HTTP\n libraries will do the right thing when you pass in an open file ..." - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
- Changed
validate_custom_fields_values_with_configurable_field_set7 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / custom_field_47393 / descriptionPrevious value: -"The value to be validated for custom field with id 47393"New value: +"JSON request body field — the value to be validated for custom field with id 47393" - changed
Input schema / properties / custom_field_58238 / descriptionPrevious value: -"The value to be validated for custom field with id 58238"New value: +"JSON request body field — the value to be validated for custom field with id 58238" - changed
Input schema / properties / id / descriptionPrevious value: -"Configurable Field Set ID"New value: +"URL path parameter — configurable Field Set ID" - changed
Input schema / properties / number / descriptionPrevious value: -"The value value to be validated for configurable field \"number\""New value: +"JSON request body field — the value value to be validated for configurable field \"number\"" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Project ID"New value: +"Query string parameter — unique identifier for the Procore project" - changed
Input schema / properties / title / descriptionPrevious value: -"The value to be validated for configurable field \"title\""New value: +"JSON request body field — the value to be validated for configurable field \"title\""
- Changed
validate_disbursement8 fields changed- changed
Input schema / properties / amount / descriptionPrevious value: -"Dollar amount of the disbursement times 100. Ex: $100.51 = 10051"New value: +"JSON request body field — dollar amount of the disbursement times 100. Ex: $100.51 = 10051" - changed
Input schema / properties / bankAccountId / descriptionPrevious value: -"UUID of the bank account"New value: +"JSON request body field — uUID of the bank account" - changed
Input schema / properties / bankAccountType / descriptionPrevious value: -"Type of the bank account"New value: +"JSON request body field — type of the bank account" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / name / descriptionPrevious value: -"Name of the disbursement"New value: +"JSON request body field — name of the disbursement" - changed
Input schema / properties / payouts / descriptionPrevious value: -"List of payouts in the disbursement. Each payout represents a payment to a business for an invoice."New value: +"JSON request body field — list of payouts in the disbursement. Each payout represents a payment to a business for an invoice." - changed
Input schema / properties / status / descriptionPrevious value: -"Status of the disbursement"New value: +"JSON request body field — status of the disbursement" - changed
Input schema / properties / workflowsConfigured / descriptionPrevious value: -"Whether workflows template is configured or not"New value: +"JSON request body field — whether workflows template is configured or not"
- Changed
validate_existing_disbursement2 fields changed- changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / disbursement_id / descriptionPrevious value: -"Unique identifier for the disbursement."New value: +"URL path parameter — unique identifier for the disbursement."
- Changed
view_an_action_plan_test_record4 fields changed- changed
Input schema / properties / id / descriptionPrevious value: -"Action Plan Test Record ID"New value: +"URL path parameter — action Plan Test Record ID" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
- Changed
view_bid_form_company5 fields changed- changed
Input schema / properties / bid_form_id / descriptionPrevious value: -"Bid Form ID"New value: +"URL path parameter — unique identifier of the bid form" - changed
Input schema / properties / bid_id / descriptionPrevious value: -"Bid ID"New value: +"URL path parameter — unique identifier of the bid" - changed
Input schema / properties / company_id / descriptionPrevious value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company." - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
- Changed
view_bid_form_project5 fields changed- changed
Input schema / properties / bid_form_id / descriptionPrevious value: -"Bid Form ID"New value: +"URL path parameter — unique identifier of the bid form" - changed
Input schema / properties / bid_package_id / descriptionPrevious value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package" - changed
Input schema / properties / page / descriptionPrevious value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)" - changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)" - changed
Input schema / properties / project_id / descriptionPrevious value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
2643 tool updates
v0.1.0- First observed
add_a_new_markup - First observed
add_additional_assignees_to_a_workflow_instance_company_v2_0 - First observed
add_additional_assignees_to_a_workflow_instance_project_v2_0 - First observed
add_alternative_response_set_to_project_checklist_template - First observed
add_an_existing_response_to_an_item_response_set - First observed
add_attachments_to_punch_item - First observed
add_attachments_to_punch_item_v1_1 - First observed
add_category_to_project - First observed
add_change_order_package_to_a_requisition_subcontractor_invoice - First observed
add_checklist_template_alternative_response_set - First observed
add_company_checklist_template_alternative_response_set - First observed
add_company_user_to_project - First observed
add_person_to_a_group - First observed
add_role_to_project - First observed
add_segment_to_the_project_pattern - First observed
add_subcategory_to_category - First observed
add_tag_instance_to_person - First observed
add_tag_instance_to_project - First observed
add_to_project - First observed
add_to_project_v1_1 - First observed
add_values_to_custom_field - First observed
add_wage_override - First observed
approve_payments_beneficiary - First observed
assign_the_attribute_items_to_the_wbs_codes_v2_0 - First observed
associate_equipment_with_project_company_v2_0 - First observed
associate_equipment_with_project_project_v2_0 - First observed
batch_get_model_manager_viewpoints_by_uuid_rest_v2_0_issue - First observed
batch_update_correspondence_type_items - First observed
batch_update_generic_tool_items - First observed
batch_update_rfis - First observed
bid_level_across_a_bid_form - First observed
bid_level_across_a_bid_form_v1_1 - First observed
bulk_activation_v2_0 - First observed
bulk_add_company_users_to_projects_v1_1 - First observed
bulk_add_company_users_to_projects_v1_2 - First observed
bulk_add_company_users_to_projects_v1_3 - First observed
bulk_add_company_users_to_projects_v2_0 - First observed
bulk_create - First observed
bulk_create_action_plan_item_assignees - First observed
bulk_create_action_plan_references - First observed
bulk_create_action_plan_template_approvers - First observed
bulk_create_action_plan_template_item_assignees_company - First observed
bulk_create_action_plan_template_item_assignees_project - First observed
bulk_create_action_plan_template_receivers - First observed
bulk_create_action_plan_template_references - First observed
bulk_create_action_plan_template_test_record_requests_company - First observed
bulk_create_action_plan_template_test_record_requests_project - First observed
bulk_create_action_plan_test_record_requests - First observed
bulk_create_action_plans_for_locations_v2_0 - First observed
bulk_create_actual_production_quantities - First observed
bulk_create_checklist_inspections_item_attachments - First observed
bulk_create_company_webhooks_triggers_v2_0 - First observed
bulk_create_custom_field_lov_entries - First observed
bulk_create_materials - First observed
bulk_create_plan_template_references - First observed
bulk_create_project_memberships - First observed
bulk_create_project_webhooks_triggers_v2_0 - First observed
bulk_create_time_and_material_equipment_logs - First observed
bulk_create_time_and_material_timecards - First observed
bulk_create_timecard_entries - First observed
bulk_create_triggers - First observed
bulk_create_update_ui_flags - First observed
bulk_create_v1_1 - First observed
bulk_create_wbs_codes - First observed
bulk_create_workflow_instances_company_public_v2_0 - First observed
bulk_create_workflow_instances_project_public_v2_0 - First observed
bulk_deactivation_v2_0 - First observed
bulk_delete_bim_model_revision_viewpoints - First observed
bulk_delete_company_segment_items - First observed
bulk_delete_company_webhooks_triggers_v2_0 - First observed
bulk_delete_managed_equipment - First observed
bulk_delete_managed_equipment_attachment - First observed
bulk_delete_managed_equipment_maintenance_log_attachments - First observed
bulk_delete_materials - First observed
bulk_delete_payouts_by_invoice - First observed
bulk_delete_procore_item_associations - First observed
bulk_delete_project_segment_items - First observed
bulk_delete_project_tasks_v2_0_company - First observed
bulk_delete_project_tasks_v2_0_company_v2_0 - First observed
bulk_delete_project_webhooks_triggers_v2_0 - First observed
bulk_delete_time_and_material_attachments - First observed
bulk_delete_time_and_material_equipment_logs - First observed
bulk_delete_time_and_material_timecards - First observed
bulk_delete_triggers - First observed
bulk_destroy_action_plan_template_approvers - First observed
bulk_destroy_action_plan_template_receivers - First observed
bulk_destroy_actual_production_quantities - First observed
bulk_remove_company_users_from_projects_v1_1 - First observed
bulk_remove_company_users_from_projects_v1_2 - First observed
bulk_remove_company_users_from_projects_v1_3 - First observed
bulk_remove_company_users_from_projects_v2_0 - First observed
bulk_remove_current_project_project_v2_0 - First observed
bulk_remove_current_project_project_v2_1 - First observed
bulk_remove_project_details_for_company_users_on_projects_v2_0 - First observed
bulk_remove_project_memberships_v2_0 - First observed
bulk_retrieve_managed_equipment - First observed
bulk_update_action_plan_item - First observed
bulk_update_action_plan_item_assignees - First observed
bulk_update_action_plan_template_item_assignees - First observed
bulk_update_action_plan_template_item_company - First observed
bulk_update_action_plan_template_item_project - First observed
bulk_update_actual_production_quantities - First observed
bulk_update_affliction_types - First observed
bulk_update_company_action_plan_template_item_assignees - First observed
bulk_update_company_observation_templates - First observed
bulk_update_contributing_behaviors - First observed
bulk_update_contributing_conditions - First observed
bulk_update_current_project_company_v2_0 - First observed
bulk_update_current_project_company_v2_1 - First observed
bulk_update_current_project_project_v2_0 - First observed
bulk_update_current_project_project_v2_1 - First observed
bulk_update_equipment_company_v2_1 - First observed
bulk_update_harm_sources - First observed
bulk_update_hazards - First observed
bulk_update_incident_action_types - First observed
bulk_update_links_v2_0 - First observed
bulk_update_managed_equipment_models - First observed
bulk_update_managed_equipment_types - First observed
bulk_update_materials - First observed
bulk_update_project_details_for_company_users_on_projects_v2_0 - First observed
bulk_update_project_observation_templates - First observed
bulk_update_status_of_equipment_company_v2_1 - First observed
bulk_update_status_of_equipment_project_v2_1 - First observed
bulk_update_subcontractor_invoice_requisitions_items - First observed
bulk_update_time_and_material_equipment_logs - First observed
bulk_update_time_and_material_timecards - First observed
bulk_update_timecard_entries - First observed
bulk_update_wbs_codes - First observed
bulk_update_work_activities - First observed
bulk_updates_for_daily_logs - First observed
calculate_number_of_inspections_to_create_based_on_schedule - First observed
calculate_when_the_first_inspection_of_an_inspection_schedule - First observed
change_history - First observed
check_company_zone - First observed
check_csv_export_status_for_commitment_change_order_rows_v2_0 - First observed
check_csv_export_status_for_prime_change_order_rows_v2_0 - First observed
check_if_number_and_revision_entered_are_available_or - First observed
check_pdf_generation_status_v2_0_project - First observed
check_pdf_generation_status_v2_0_project_v2_0 - First observed
check_pdf_generation_status_v2_0_project_v2_0_2 - First observed
check_pdf_generation_status_v2_0_project_v2_0_4 - First observed
check_pdf_generation_status_v2_0_project_v2_0_5 - First observed
check_pdf_generation_status_v2_0_project_v2_0_6 - First observed
checklist_schedule_assignee_filter_options - First observed
checklist_schedule_equipment_filter_options - First observed
checklist_schedule_inspection_template_filter_options - First observed
checklist_schedule_inspection_type_filter_options - First observed
checklist_schedule_location_filter_options - First observed
clone_bid_board_project_v2_0 - First observed
clone_change_event_v1_1 - First observed
clones_daily_logs_from_one_date_to_another_date - First observed
close_and_distribute_a_submittal_log - First observed
company_folder_and_file_index - First observed
company_folder_and_file_index_v2_0 - First observed
configuration_of_specifications_tool_v2_0 - First observed
convert_private_layer_to_public - First observed
copy_from_standard_cost_code_list - First observed
copy_subset_from_standard_cost_code_list - First observed
create_a_batch_of_bim_levels - First observed
create_a_batch_of_bim_model_revision_plans - First observed
create_a_batch_of_bim_model_revision_viewpoints - First observed
create_a_batch_of_bim_plans - First observed
create_a_batch_of_bim_view_folder_by_path - First observed
create_a_batch_of_bim_viewpoints - First observed
create_a_bid_form - First observed
create_a_bid_form_v1_1 - First observed
create_a_bim_viewpoint - First observed
create_a_budget_change - First observed
create_a_budget_lock - First observed
create_a_budget_view_snapshot - First observed
create_a_change_order_change_reason_v2_0 - First observed
create_a_checklist_inspection_schedule - First observed
create_a_company_action_plan_type - First observed
create_a_company_wbs_segment - First observed
create_a_compliance_document_project - First observed
create_a_compliance_document_project_v1_0 - First observed
create_a_coordination_issue_rest_v2_0_v2_0 - First observed
create_a_copy_of_the_action_plan_item_in_the_items_section - First observed
create_a_copy_of_the_action_plan_section_in_the_action_plan_of - First observed
create_a_copy_of_the_action_plan_template_item_in_the_items - First observed
create_a_copy_of_the_action_plan_template_item_in_the_items_2 - First observed
create_a_copy_of_the_action_plan_template_section_in_the_company - First observed
create_a_copy_of_the_action_plan_template_section_in_the_project - First observed
create_a_job_title - First observed
create_a_line_item_group_in_the_proposal_v2_0_company - First observed
create_a_line_item_group_in_the_proposal_v2_0_project - First observed
create_a_manual_forecast_line_item - First observed
create_a_manual_hold_for_a_given_invoice - First observed
create_a_model_manager_viewpoint_and_link_it_to_the_issue_rest - First observed
create_a_new_budgeted_production_quantity - First observed
create_a_new_classification - First observed
create_a_new_context - First observed
create_a_new_crew - First observed
create_a_new_equipment - First observed
create_a_new_group - First observed
create_a_new_layer - First observed
create_a_new_maintenance_record_company_v2_0 - First observed
create_a_new_maintenance_record_project_v2_0 - First observed
create_a_new_time_and_material_entry - First observed
create_a_new_time_and_material_equipment_log - First observed
create_a_new_time_and_material_notification - First observed
create_a_note_in_the_project_v2_0_company - First observed
create_a_note_in_the_project_v2_0_company_v2_0 - First observed
create_a_person - First observed
create_a_piece_of_equipment - First observed
create_a_project - First observed
create_a_project_checklist_template_from_a_company_checklist - First observed
create_a_project_logo - First observed
create_a_proposal_in_the_project_v2_0_company - First observed
create_a_proposal_in_the_project_v2_0_company_v2_0 - First observed
create_a_resource_request_on_a_project - First observed
create_a_response - First observed
create_a_response_in_the_specified_item_response_set - First observed
create_a_single_group - First observed
create_a_task_item_comment - First observed
create_a_wbs_code - First observed
create_a_workflow_instance_company_v2_0 - First observed
create_a_workflow_instance_project_v2_0 - First observed
create_accident_log - First observed
create_action - First observed
create_action_plan - First observed
create_action_plan_approver_signature - First observed
create_action_plan_item - First observed
create_action_plan_item_assignee - First observed
create_action_plan_item_assignee_signature - First observed
create_action_plan_receiver_signature - First observed
create_action_plan_reference - First observed
create_action_plan_section - First observed
create_action_plan_template_approver - First observed
create_action_plan_template_receiver - First observed
create_action_plan_test_record - First observed
create_action_plan_test_record_request - First observed
create_action_plan_verification_methods - First observed
create_actual_production_quantity - First observed
create_advanced_export_for_existing_rfi - First observed
create_affliction_type - First observed
create_an_action_plan_from_a_plan_template - First observed
create_an_equipment_make - First observed
create_an_equipment_model - First observed
create_an_equipment_type - First observed
create_an_estimate_line_item_in_the_proposal_v2_0_company - First observed
create_an_estimate_line_item_in_the_proposal_v2_0_project - First observed
create_an_project_equipment_log - First observed
create_and_update_bulk_coordination_issues - First observed
create_app_configuration - First observed
create_app_installation - First observed
create_attachment_project - First observed
create_attachment_project_v1_0 - First observed
create_attachment_project_v1_0_2 - First observed
create_attachment_project_v1_0_4 - First observed
create_attachment_project_v1_0_5 - First observed
create_bid - First observed
create_bid_board_project_v2_0 - First observed
create_bid_package - First observed
create_billing_period - First observed
create_bim_file - First observed
create_bim_geometry_file_bundle - First observed
create_bim_level - First observed
create_bim_mint_tokens - First observed
create_bim_model - First observed
create_bim_model_revision - First observed
create_bim_model_revision_plan - First observed
create_bim_plan - First observed
create_bim_view_folder - First observed
create_budget_line_item - First observed
create_budget_line_item_v1_1 - First observed
create_budget_modification - First observed
create_calendar_item - First observed
create_call_log - First observed
create_catalog_v2_0 - First observed
create_change_event - First observed
create_change_event_production_quantity - First observed
create_change_event_v1_1 - First observed
create_change_order_package - First observed
create_change_order_request - First observed
create_checklist - First observed
create_checklist_comment - First observed
create_checklist_inspection - First observed
create_checklist_inspection_v1_1 - First observed
create_checklist_item_attachment - First observed
create_checklist_item_response - First observed
create_checklist_schedule_attachment - First observed
create_checklist_section - First observed
create_checklist_signature - First observed
create_checklist_signature_request - First observed
create_classification - First observed
create_commitment_change_order - First observed
create_commitment_change_order_batch - First observed
create_commitment_change_order_line_item_v2_0 - First observed
create_commitment_contract_line_item_v2_0 - First observed
create_commitment_contract_v2_0 - First observed
create_communication_tag - First observed
create_company_action_plan_template_item - First observed
create_company_action_plan_template_item_assignee - First observed
create_company_action_plan_template_reference - First observed
create_company_action_plan_template_section - First observed
create_company_action_plan_template_test_record_request - First observed
create_company_action_plan_templates - First observed
create_company_action_plan_templates_v1_1 - First observed
create_company_checklist_template - First observed
create_company_checklist_template_section - First observed
create_company_classifications_for_project - First observed
create_company_currency_configuration_v2_0 - First observed
create_company_exchange_rates - First observed
create_company_file - First observed
create_company_file_version - First observed
create_company_folder - First observed
create_company_form_template - First observed
create_company_inspection_template_item - First observed
create_company_inspection_template_item_reference - First observed
create_company_insurance - First observed
create_company_level_email - First observed
create_company_level_email_communication - First observed
create_company_office - First observed
create_company_person - First observed
create_company_segment_item - First observed
create_company_tag - First observed
create_company_upload - First observed
create_company_upload_v1_1 - First observed
create_company_user_v1_0 - First observed
create_company_user_v1_0_2 - First observed
create_company_user_v1_1 - First observed
create_company_user_v1_2 - First observed
create_company_user_v1_3 - First observed
create_company_vendor - First observed
create_company_vendor_business_register - First observed
create_company_vendor_insurance - First observed
create_company_webhooks_hook_v2_0 - First observed
create_company_webhooks_triggers_v2_0 - First observed
create_compliance_document_v2_0 - First observed
create_configurable_field_sets - First observed
create_contract_payment - First observed
create_contributing_behavior - First observed
create_contributing_condition - First observed
create_coordination_issue - First observed
create_coordination_issue_assignment - First observed
create_cost_code - First observed
create_cost_item_v2_0 - First observed
create_csv_export_for_commitment_change_order_rows_v2_0 - First observed
create_csv_export_for_prime_change_order_rows_v2_0 - First observed
create_custom_field - First observed
create_daily_construction_report_log - First observed
create_delay_log - First observed
create_delivery_log - First observed
create_department - First observed
create_direct_cost_item - First observed
create_direct_cost_item_v1_1 - First observed
create_direct_cost_line_item - First observed
create_document_custom_tag - First observed
create_drawing_area - First observed
create_drawing_area_v1_1 - First observed
create_drawing_set - First observed
create_drawing_upload - First observed
create_drawing_upload_v1_1 - First observed
create_drawing_v1_1 - First observed
create_dumpster_log - First observed
create_early_pay_program - First observed
create_email - First observed
create_email_communication - First observed
create_environmental - First observed
create_equipment - First observed
create_equipment_attachment_company_v2_0 - First observed
create_equipment_attachment_project_v2_0 - First observed
create_equipment_category - First observed
create_equipment_category_company_v2_0 - First observed
create_equipment_category_project_v2_0 - First observed
create_equipment_company_v2_0 - First observed
create_equipment_company_v2_1 - First observed
create_equipment_log_company - First observed
create_equipment_log_project - First observed
create_equipment_maintenance_log - First observed
create_equipment_make_company_v2_0 - First observed
create_equipment_make_project_v2_0 - First observed
create_equipment_model_company_v2_0 - First observed
create_equipment_model_project_v2_0 - First observed
create_equipment_project_v2_0 - First observed
create_equipment_project_v2_1 - First observed
create_equipment_status_company_v2_0 - First observed
create_equipment_type_company_v2_0 - First observed
create_equipment_type_project_v2_0 - First observed
create_form - First observed
create_generic_tool - First observed
create_generic_tool_item - First observed
create_generic_tool_item_response - First observed
create_generic_tool_status - First observed
create_gps_position - First observed
create_group_and_move_markups - First observed
create_harm_source - First observed
create_hazard - First observed
create_image - First observed
create_image_category - First observed
create_incident - First observed
create_incident_action_type - First observed
create_injury - First observed
create_inspection_log - First observed
create_inspection_type - First observed
create_installation_request - First observed
create_instruction_types - First observed
create_instructions - First observed
create_item_response_set - First observed
create_line_item_type - First observed
create_line_items_and_line_item_groups_in_bulk_to_the_project - First observed
create_line_items_and_line_item_groups_in_bulk_to_the_project_2 - First observed
create_link - First observed
create_location - First observed
create_location_admin - First observed
create_lookahead - First observed
create_lookahead_task - First observed
create_lookahead_v1_1 - First observed
create_maintenance_log_attachment - First observed
create_manpower_log - First observed
create_material - First observed
create_meeting - First observed
create_meeting_attendee_record - First observed
create_meeting_category - First observed
create_meeting_topic - First observed
create_meeting_topic_v1_1 - First observed
create_meeting_v1_1 - First observed
create_monitoring_resource - First observed
create_near_miss - First observed
create_new_delay_log_type - First observed
create_new_sub_cost_catalog_v2_0 - First observed
create_notes_log - First observed
create_observation_item - First observed
create_observation_item_response_log - First observed
create_or_find_bim_view_folder_by_path - First observed
create_payment_application_owner_invoice_for_prime_contract - First observed
create_pdf_export_for_a_commitment_change_order_batch_v2_0 - First observed
create_pdf_export_for_a_commitment_change_order_v2_0 - First observed
create_pdf_export_for_a_prime_change_order_batch_v2_0 - First observed
create_pdf_export_for_a_prime_change_order_v2_0 - First observed
create_pdf_export_for_a_prime_contract_v2_0 - First observed
create_pdf_export_for_commitment_contracts_v2_0 - First observed
create_pdf_template_config - First observed
create_permission_template - First observed
create_plan_revision_log - First observed
create_potential_change_order - First observed
create_potential_change_order_line_item - First observed
create_prime_change_order - First observed
create_prime_change_order_batch - First observed
create_prime_change_order_line_item_v2_0 - First observed
create_prime_contract - First observed
create_prime_contract_line_item - First observed
create_prime_contract_line_item_v2_0 - First observed
create_prime_contract_v2_0 - First observed
create_procore_item_association - First observed
create_productivity_log - First observed
create_program - First observed
create_project - First observed
create_project_action_plan_template_reference - First observed
create_project_bid_type - First observed
create_project_checklist_template - First observed
create_project_currency_configuration - First observed
create_project_distribution_group - First observed
create_project_equipment_maintenance_log - First observed
create_project_exchange_rates - First observed
create_project_file - First observed
create_project_file_version - First observed
create_project_folder - First observed
create_project_inspection_template_item_reference - First observed
create_project_insurance - First observed
create_project_membership - First observed
create_project_observation_type - First observed
create_project_owner_type - First observed
create_project_person - First observed
create_project_region - First observed
create_project_role - First observed
create_project_segment_item - First observed
create_project_stage - First observed
create_project_task_v2_0_company - First observed
create_project_task_v2_0_company_v2_0 - First observed
create_project_type - First observed
create_project_upload - First observed
create_project_upload_v1_1 - First observed
create_project_user - First observed
create_project_vendor - First observed
create_project_vendor_insurance - First observed
create_project_vendor_v1_1 - First observed
create_project_webhooks_hook_v2_0 - First observed
create_project_webhooks_triggers_v2_0 - First observed
create_property_damage - First observed
create_punch_item - First observed
create_punch_item_comment - First observed
create_punch_item_type - First observed
create_punch_item_v1_1 - First observed
create_purchase_order_contract - First observed
create_purchase_order_contract_detail_line_item - First observed
create_purchase_order_contract_line_item - First observed
create_quantity_log - First observed
create_reinspections_v2_0 - First observed
create_requested_change_v1_1 - First observed
create_requisition_subcontractor_invoices_for_commitment - First observed
create_requisition_subcontractor_invoices_for_commitment_v1_1 - First observed
create_resource - First observed
create_resource_v1_1 - First observed
create_rfi - First observed
create_rfi_reply - First observed
create_rfq - First observed
create_rfq_quote - First observed
create_rfq_response - First observed
create_rounding_configuration - First observed
create_safety_violation_log - First observed
create_signature_for_time_and_material_entry - First observed
create_signature_for_timesheet_company - First observed
create_signature_for_timesheet_project - First observed
create_specification_area_v2_1 - First observed
create_specification_section_division_for_a_project - First observed
create_specification_section_for_a_project - First observed
create_specification_set - First observed
create_specification_upload - First observed
create_standard_cost_code - First observed
create_standard_cost_code_list - First observed
create_sub_job - First observed
create_submittal - First observed
create_submittal_response - First observed
create_submittal_v1_1 - First observed
create_support_pin_v2_0 - First observed
create_task - First observed
create_task_item - First observed
create_tax_code - First observed
create_tax_type - First observed
create_time_and_material_timecard - First observed
create_time_off_for_a_person - First observed
create_timecard_entry - First observed
create_timecard_entry_company - First observed
create_timecard_entry_project - First observed
create_timecard_entry_v1_1 - First observed
create_timeline_event_v2_0 - First observed
create_timesheet - First observed
create_timesheet_to_budget_configuration - First observed
create_todo - First observed
create_trade - First observed
create_unit_of_measure - First observed
create_unmanaged_equipment_project_v2_0 - First observed
create_viewpoint_and_procore_item_association - First observed
create_visitor_log - First observed
create_waste_log - First observed
create_wbs_attribute_item_v2_0 - First observed
create_wbs_attribute_items_in_bulk_v2_0 - First observed
create_wbs_attributes_v2_0 - First observed
create_weather_log - First observed
create_weather_log_v1_1 - First observed
create_webhooks_hook - First observed
create_webhooks_trigger - First observed
create_witness_statement - First observed
create_work_activity - First observed
create_work_log - First observed
create_work_order_contract - First observed
create_work_order_contract_detail_line_item - First observed
create_work_order_contract_line_item - First observed
create_workflow_activity_history - First observed
creates_a_inspection_item_signature_request_v2_0_project - First observed
creates_a_inspection_item_signature_request_v2_0_project_v2_0 - First observed
creates_an_inspection_item_comment - First observed
creates_or_updates_a_budget_note_for_a_budget_or_a_forecasting - First observed
creates_or_updates_project_date - First observed
creates_requested_change - First observed
deactivate_early_pay_program - First observed
delete_a_budget_change - First observed
delete_a_budgeted_production_quantity - First observed
delete_a_change_order_change_reason_v2_0 - First observed
delete_a_classification - First observed
delete_a_company_action_plan_templates - First observed
delete_a_company_action_plan_templates_v1_1 - First observed
delete_a_company_office - First observed
delete_a_compliance_document_project - First observed
delete_a_compliance_document_project_v1_0 - First observed
delete_a_coordination_issue_rest_v2_0_v2_0 - First observed
delete_a_crew - First observed
delete_a_direct_cost_line_item - First observed
delete_a_drawing_area - First observed
delete_a_drawing_area_v1_1 - First observed
delete_a_equipment_type - First observed
delete_a_job_title - First observed
delete_a_line_item_group_from_the_proposal_v2_0_company - First observed
delete_a_line_item_group_from_the_proposal_v2_0_project - First observed
delete_a_link_v2_0 - First observed
delete_a_maintenance_record_by_id_project_v2_0 - First observed
delete_a_maintenance_record_by_id_v2_0 - First observed
delete_a_manual_forecast_line_item - First observed
delete_a_note_from_the_project_v2_0_company - First observed
delete_a_note_from_the_project_v2_0_company_v2_0 - First observed
delete_a_payment_application_owner_invoice - First observed
delete_a_person - First observed
delete_a_prime_contract_line_item - First observed
delete_a_proposal_from_the_project_v2_0_company - First observed
delete_a_proposal_from_the_project_v2_0_company_v2_0 - First observed
delete_a_resource_planning_tag - First observed
delete_a_resource_request - First observed
delete_a_response - First observed
delete_a_signature - First observed
delete_a_single_group - First observed
delete_a_single_project - First observed
delete_a_task_item_comment - First observed
delete_a_time_and_material_attachment - First observed
delete_a_time_and_material_entry - First observed
delete_a_time_and_material_equipment_log - First observed
delete_a_time_and_material_notification - First observed
delete_a_time_off_record - First observed
delete_accident_log - First observed
delete_action_plan - First observed
delete_action_plan_approver_signature - First observed
delete_action_plan_item - First observed
delete_action_plan_item_assignee - First observed
delete_action_plan_item_assignee_signature - First observed
delete_action_plan_receiver_signature - First observed
delete_action_plan_reference - First observed
delete_action_plan_section - First observed
delete_action_plan_template_approver - First observed
delete_action_plan_template_receiver - First observed
delete_action_plan_test_record - First observed
delete_action_plan_test_record_request - First observed
delete_action_plan_verification_method - First observed
delete_actual_production_quantity - First observed
delete_affliction_type - First observed
delete_an_equipment - First observed
delete_an_equipment_make - First observed
delete_an_equipment_model - First observed
delete_an_estimate_line_item_from_the_proposal_v2_0_company - First observed
delete_an_estimate_line_item_from_the_proposal_v2_0_project - First observed
delete_an_inspection_item_attachment - First observed
delete_an_project_equipment_log - First observed
delete_an_rfi_response - First observed
delete_app_configuration - First observed
delete_attachment - First observed
delete_bid_board_project_v2_0 - First observed
delete_bid_form - First observed
delete_bid_form_item - First observed
delete_bid_form_section - First observed
delete_billing_period - First observed
delete_bim_file - First observed
delete_bim_level - First observed
delete_bim_model - First observed
delete_bim_model_revision - First observed
delete_bim_model_revision_plan - First observed
delete_bim_model_revision_viewpoint - First observed
delete_bim_plan - First observed
delete_budget_line_item_v2_0 - First observed
delete_budget_lock - First observed
delete_budget_modification - First observed
delete_bulk_coordination_issues - First observed
delete_calendar_item - First observed
delete_call_log - First observed
delete_catalog_v2_0 - First observed
delete_category - First observed
delete_change_event_production_quantity - First observed
delete_change_event_v1_1 - First observed
delete_checklist - First observed
delete_checklist_inspection - First observed
delete_checklist_inspection_v1_1 - First observed
delete_checklist_inspections_item_attachment - First observed
delete_checklist_item_response - First observed
delete_checklist_schedule - First observed
delete_checklist_schedule_attachment - First observed
delete_checklist_section - First observed
delete_checklist_signature - First observed
delete_checklist_signature_request - First observed
delete_classification - First observed
delete_commitment_change_order - First observed
delete_commitment_change_order_batch - First observed
delete_commitment_change_order_line_item_v2_0 - First observed
delete_commitment_contract_line_item_v2_0 - First observed
delete_commitment_contract_v2_0 - First observed
delete_company_action_plan_template_item_assignee - First observed
delete_company_action_plan_template_reference - First observed
delete_company_action_plan_template_test_record_request - First observed
delete_company_action_plan_type - First observed
delete_company_checklist_section - First observed
delete_company_checklist_template - First observed
delete_company_currency_configuration - First observed
delete_company_file - First observed
delete_company_folder - First observed
delete_company_form_template - First observed
delete_company_inspection_template_item - First observed
delete_company_inspection_template_item_reference - First observed
delete_company_insurance - First observed
delete_company_logo - First observed
delete_company_role_v2_0 - First observed
delete_company_segment_item - First observed
delete_company_vendor_insurance - First observed
delete_company_webhooks_hook_v2_0 - First observed
delete_company_webhooks_trigger_v2_0 - First observed
delete_configurable_field_set - First observed
delete_context_by_id - First observed
delete_context_by_query_parameters - First observed
delete_contract_payment - First observed
delete_contributing_behavior - First observed
delete_contributing_condition - First observed
delete_coordination_issue - First observed
delete_coordination_issue_attachment - First observed
delete_coordination_issue_workflow_issue_v2_0 - First observed
delete_cost_item_v2_0 - First observed
delete_cost_items_v2_0 - First observed
delete_custom_field - First observed
delete_daily_construction_report_log - First observed
delete_delay_log - First observed
delete_delivery_log - First observed
delete_department - First observed
delete_direct_cost_item - First observed
delete_direct_cost_item_v1_1 - First observed
delete_document_custom_tag - First observed
delete_drawing_set - First observed
delete_drawing_upload - First observed
delete_drawing_upload_v1_1 - First observed
delete_dumpster_log - First observed
delete_equipment - First observed
delete_equipment_attachment_company_v2_0 - First observed
delete_equipment_attachment_project_v2_0 - First observed
delete_equipment_category - First observed
delete_equipment_category_company_v2_0 - First observed
delete_equipment_company_v2_0 - First observed
delete_equipment_log - First observed
delete_equipment_maintenance_log - First observed
delete_equipment_make_company_v2_0 - First observed
delete_equipment_model_company_v2_0 - First observed
delete_equipment_status_company_v2_0 - First observed
delete_equipment_timecard_entry_project - First observed
delete_equipment_type_company_v2_0 - First observed
delete_form - First observed
delete_from_project - First observed
delete_from_project_v1_1 - First observed
delete_generic_tool_item - First observed
delete_generic_tool_status - First observed
delete_group - First observed
delete_harm_source - First observed
delete_hazard - First observed
delete_image - First observed
delete_image_category - First observed
delete_incident - First observed
delete_incident_action_type - First observed
delete_incident_alert_recipient - First observed
delete_inspection_log - First observed
delete_inspection_type - First observed
delete_instruction - First observed
delete_instruction_type - First observed
delete_item_response_set - First observed
delete_layer - First observed
delete_link - First observed
delete_location - First observed
delete_lookahead - First observed
delete_lookahead_task - First observed
delete_lookahead_v1_1 - First observed
delete_managed_equipment_attachment - First observed
delete_managed_equipment_maintenance_log_attachment - First observed
delete_manpower_log - First observed
delete_markups - First observed
delete_material - First observed
delete_meeting - First observed
delete_meeting_attendee_record - First observed
delete_meeting_category_v2_0 - First observed
delete_meeting_v1_1 - First observed
delete_monitoring_resource - First observed
delete_multiple_signatures - First observed
delete_notes_log - First observed
delete_observation_item - First observed
delete_payout - First observed
delete_pdf_template_config - First observed
delete_plan_revision_log - First observed
delete_potential_change_order_line_item - First observed
delete_prime_change_order - First observed
delete_prime_change_order_batch - First observed
delete_prime_change_order_line_item_v2_0 - First observed
delete_prime_contract - First observed
delete_prime_contract_line_item_v2_0 - First observed
delete_prime_contract_v2_0 - First observed
delete_procore_item_association - First observed
delete_productivity_log - First observed
delete_program - First observed
delete_project_action_plan_template_reference - First observed
delete_project_bid_type - First observed
delete_project_checklist_template - First observed
delete_project_currency_configuration - First observed
delete_project_distribution_group - First observed
delete_project_equipment_maintenance_log - First observed
delete_project_file - First observed
delete_project_folder - First observed
delete_project_inspection_template_item_reference - First observed
delete_project_insurance - First observed
delete_project_location - First observed
delete_project_location_v1_1 - First observed
delete_project_membership - First observed
delete_project_observation_type - First observed
delete_project_owner_type - First observed
delete_project_region - First observed
delete_project_role - First observed
delete_project_segment_item - First observed
delete_project_stage - First observed
delete_project_task_v2_0_company - First observed
delete_project_task_v2_0_company_v2_0 - First observed
delete_project_type - First observed
delete_project_vendor_insurance - First observed
delete_project_webhooks_hook_v2_0 - First observed
delete_project_webhooks_trigger_v2_0 - First observed
delete_punch_item - First observed
delete_punch_item_type - First observed
delete_punch_item_v1_1 - First observed
delete_purchase_order_contract - First observed
delete_purchase_order_contract_detail_line_item - First observed
delete_purchase_order_contract_line_item - First observed
delete_quantity_log - First observed
delete_requisition_compliance_document_v2_0 - First observed
delete_requisition_subcontractor_invoice - First observed
delete_requisition_subcontractor_invoice_v1_1 - First observed
delete_resource - First observed
delete_resource_v1_1 - First observed
delete_rfq - First observed
delete_rounding_configuration - First observed
delete_safety_violation_log - First observed
delete_signature_project - First observed
delete_signature_project_v1_0 - First observed
delete_specification_area_v2_1 - First observed
delete_stamp - First observed
delete_stamp_v2_0 - First observed
delete_standard_cost_code - First observed
delete_sub_job - First observed
delete_subcategory - First observed
delete_submittal_v1_1 - First observed
delete_task - First observed
delete_tax_type - First observed
delete_the_project_logo - First observed
delete_time_and_material_timecard - First observed
delete_timecard_entries - First observed
delete_timecard_entry - First observed
delete_timecard_entry_company - First observed
delete_timecard_entry_project - First observed
delete_timeline_event_v2_0 - First observed
delete_timesheet - First observed
delete_timesheet_to_budget_configuration - First observed
delete_todo - First observed
delete_unit_of_measure - First observed
delete_viewpoint_and_procore_item_association - First observed
delete_visitor_log - First observed
delete_wage_override - First observed
delete_waste_log - First observed
delete_wbs_attribute_item_v2_0 - First observed
delete_wbs_attributes_v2_0 - First observed
delete_wbs_segment - First observed
delete_weather_log - First observed
delete_weather_log_v1_1 - First observed
delete_webhooks_hook - First observed
delete_webhooks_trigger - First observed
delete_work_activity - First observed
delete_work_log - First observed
delete_work_order_contract - First observed
delete_work_order_contract_detail_line_item - First observed
delete_work_order_contract_line_item - First observed
deletes_an_inspection_item_signature_request_v2_0 - First observed
deletes_an_inspection_item_signature_v2_0 - First observed
destroy_action - First observed
destroy_environmental - First observed
destroy_injury - First observed
destroy_near_miss - First observed
destroy_property_damage - First observed
destroy_task_item - First observed
destroy_witness_statement - First observed
disable_payments - First observed
disassociate_equipment_with_project_company_v2_0 - First observed
disassociate_equipment_with_project_project_v2_0 - First observed
document_markup_permissions - First observed
download_all_company_level_email_attachments - First observed
download_all_email_attachments - First observed
download_coordination_issues - First observed
download_rfis_list - First observed
download_rfis_list_v1_1 - First observed
download_schedule_file - First observed
draft_create_v1_1 - First observed
duplicate_a_configurable_field_set_and_its_custom_fields - First observed
edit_a_timecard_entry_v1_1 - First observed
email_a_time_and_material_entry - First observed
enable_a_person_to_log_in - First observed
enable_payments - First observed
export_company_level_email_communication - First observed
export_company_time_index_to_csv - First observed
export_email_communication_to_pdf - First observed
fetch_active_support_pin_v2_0 - First observed
fetch_attachment_by_id_company_v2_0 - First observed
fetch_attachment_by_id_project_v2_0 - First observed
find_configurable_field_set_by_index - First observed
find_or_create_an_annotated_document - First observed
find_or_create_an_annotated_document_with_markup_context - First observed
find_or_create_location_s_by_path - First observed
finds_or_creates_a_inspection_item_signature_request_v2_0 - First observed
generates_pdf_document - First observed
get_a_groups_projects - First observed
get_a_list_of_inspection_item_evidence_configurations_v2_0 - First observed
get_a_list_of_inspection_item_signature_requests_v2_0 - First observed
get_a_list_of_possible_assignees_for_an_rfi - First observed
get_a_list_of_possible_rfi_managers_for_an_rfi - First observed
get_a_list_of_possible_timesheet_creator_ids - First observed
get_a_list_of_possible_timesheet_creators - First observed
get_a_single_group - First observed
get_a_single_job_title - First observed
get_a_single_person - First observed
get_a_single_project - First observed
get_a_single_resource_planning_tag - First observed
get_a_workflow_instance_company_v2_0 - First observed
get_a_workflow_instance_project_v2_0 - First observed
get_a_workflow_template_version_v2_0 - First observed
get_accessible_groups_for_authenticated_user_by_context - First observed
get_accessible_layers_for_authenticated_user_by_context - First observed
get_active_reinspection_v2_0 - First observed
get_activity_by_id_v2_0 - First observed
get_activity_link_by_id_v2_0 - First observed
get_adjustment_and_adjustment_line_items_of_a_project_v2_0 - First observed
get_advanced_forecasting_rows_of_a_project_v2_0 - First observed
get_affected_body_part_filter_options - First observed
get_affected_body_parts - First observed
get_affected_company_filter_options_project - First observed
get_affected_company_filter_options_project_v1_0 - First observed
get_affected_company_filter_options_project_v1_0_2 - First observed
get_affected_company_filter_options_project_v1_0_4 - First observed
get_affected_parties_filter_options_project - First observed
get_affected_parties_filter_options_project_v1_0 - First observed
get_affected_persons_filter_options_project - First observed
get_affected_persons_filter_options_project_v1_0 - First observed
get_affliction_type_filter_options - First observed
get_all_attachments_for_equipment_company_v2_0 - First observed
get_all_attachments_for_equipment_project_v2_0 - First observed
get_all_bid_board_projects_v2_0 - First observed
get_all_company_groups - First observed
get_all_custom_fields - First observed
get_all_equipment_categories_company_v2_0 - First observed
get_all_equipment_categories_project_v2_0 - First observed
get_all_equipment_company_v2_0 - First observed
get_all_equipment_company_v2_1 - First observed
get_all_equipment_ids_company_v2_0 - First observed
get_all_equipment_ids_company_v2_1 - First observed
get_all_equipment_maintenance_records_company_v2_0 - First observed
get_all_equipment_maintenance_records_project_v2_0 - First observed
get_all_equipment_makes_company_v2_0 - First observed
get_all_equipment_makes_project_v2_0 - First observed
get_all_equipment_models_company_v2_0 - First observed
get_all_equipment_models_project_v2_0 - First observed
get_all_equipment_statuses_company_v2_0 - First observed
get_all_equipment_statuses_project_v2_0 - First observed
get_all_equipment_types_company_v2_0 - First observed
get_all_equipment_types_project_v2_0 - First observed
get_all_job_titles_belonging_to_a_group - First observed
get_all_job_titles_in_the_company - First observed
get_all_people_belonging_to_a_company - First observed
get_all_people_belonging_to_a_group - First observed
get_all_resource_planning_tag_for_a_company - First observed
get_all_resource_planning_tag_for_a_group - First observed
get_all_resource_requests_for_a_single_project - First observed
get_all_resource_requests_for_projects_in_a_single_group - First observed
get_all_resource_requests_in_a_company - First observed
get_all_time_off_for_a_single_person - First observed
get_assignee_filter_options - First observed
get_bid_board_project_by_id_v2_0 - First observed
get_bid_board_project_custom_fields_v2_0 - First observed
get_budget_view_options_v2_0 - First observed
get_calendar_by_id_v2_0 - First observed
get_catalogs_v2_0 - First observed
get_change_event_settings_v2_0 - First observed
get_company_assignments - First observed
get_company_currency_configuration - First observed
get_company_exchange_rates - First observed
get_company_snapshots_summary_v2_0 - First observed
get_complete_layer_structure_by_context_type_and_type_id - First observed
get_configurable_field_sets_company_v2_0 - First observed
get_configuration_for_uom_master_list_v2_0 - First observed
get_context_by_id - First observed
get_contexts - First observed
get_contracts_invoice_configuration - First observed
get_contributing_behavior_filter_options - First observed
get_contributing_condition_filter_options - First observed
get_cost_item_v2_0 - First observed
get_cost_items_v2_0 - First observed
get_current_company_assignments - First observed
get_custom_field_data_types_v2_0 - First observed
get_daily_log_headers_for_the_project - First observed
get_environmental_type_filter_options - First observed
get_equipment_by_id_company_v2_0 - First observed
get_equipment_by_id_company_v2_1 - First observed
get_equipment_by_id_project_v2_1 - First observed
get_equipment_by_project_project_v2_0 - First observed
get_equipment_by_project_project_v2_1 - First observed
get_equipment_change_history_company_v2_0 - First observed
get_equipment_ids_by_project_project_v2_0 - First observed
get_equipment_ids_by_project_project_v2_1 - First observed
get_equipment_maintenance_record_by_its_id_company_v2_0 - First observed
get_equipment_maintenance_record_by_its_id_project_v2_0 - First observed
get_equipment_projects_company_v2_0 - First observed
get_export_options_for_existing_rfi - First observed
get_file_by_its_uuid - First observed
get_filing_type_filter_options - First observed
get_filing_types - First observed
get_group_assignments - First observed
get_group_by_id - First observed
get_groups - First observed
get_groups_for_layer - First observed
get_harm_source_filter_options_project - First observed
get_harm_source_filter_options_project_v1_0 - First observed
get_hazard_filter_options - First observed
get_import_logs_v2_0 - First observed
get_import_status_v2_0 - First observed
get_incident_statuses - First observed
get_information_of_a_budget_change - First observed
get_layer_by_id - First observed
get_layers - First observed
get_layers_for_context - First observed
get_location_filter_options - First observed
get_look_ahead_data - First observed
get_managed_equipment_filter_options_project - First observed
get_managed_equipment_filter_options_project_v1_0 - First observed
get_managed_equipment_filter_options_project_v1_0_2 - First observed
get_managed_equipment_filter_options_project_v1_0_4 - First observed
get_markup_stamp - First observed
get_my_open_items_statistics - First observed
get_next_available_number - First observed
get_next_available_number_by_spec_section - First observed
get_next_available_number_by_spec_section_v1_1 - First observed
get_next_available_number_v1_1 - First observed
get_observation_item_pdf_url - First observed
get_one_coordination_issue_viewpoint_model_manager_or_legacy - First observed
get_open_items_statistics - First observed
get_operation_details_v2_0 - First observed
get_or_create_context_with_hierarchy - First observed
get_or_create_document_info_v1_1 - First observed
get_or_refresh_an_access_token - First observed
get_permission_level_options - First observed
get_person_assignments - First observed
get_persons_assignment_history_data - First observed
get_project_assignments - First observed
get_project_budget_view_options_v2_0 - First observed
get_project_currency_configuration - First observed
get_project_exchange_rates - First observed
get_project_incident_configuration - First observed
get_project_task_by_id_v2_0_company - First observed
get_project_task_by_id_v2_0_company_v2_0 - First observed
get_project_tasks_v2_0_company - First observed
get_project_tasks_v2_0_company_v2_0 - First observed
get_projects_assignment_history_data - First observed
get_requisition_compliance_document_v2_0 - First observed
get_resource_planning_notification_profiles - First observed
get_responsible_company_filter_options - First observed
get_revisions - First observed
get_revisions_v1_1 - First observed
get_schedule_by_id_v2_0 - First observed
get_schedule_import_processing_state - First observed
get_schedule_metadata - First observed
get_single_custom_field - First observed
get_single_time_off_record - First observed
get_stamps - First observed
get_stamps_v2_0 - First observed
get_status_filter_options - First observed
get_tags_requiring_action_report - First observed
get_the_daily_log_header_via_date_or_id - First observed
get_the_minutes_and_date_created_for_all_parent_topics - First observed
get_the_minutes_and_date_created_for_all_parent_topics_v1_1 - First observed
get_timeline_event_by_id_v2_0 - First observed
get_token_info - First observed
get_total_workers_and_man_hours - First observed
get_units_of_measure - First observed
get_unmanaged_equipment_project_v2_0 - First observed
get_work_activity_filter_options_project - First observed
get_work_activity_filter_options_project_v1_0 - First observed
get_work_activity_filter_options_project_v1_0_2 - First observed
get_work_activity_filter_options_project_v1_0_4 - First observed
get_workflow_data - First observed
get_workflow_data_v1_1 - First observed
get_workflow_instance_history_company_v2_0 - First observed
get_workflow_instance_history_project_v2_0 - First observed
get_workflow_preset_company_v2_0 - First observed
get_workflow_preset_project_v2_0 - First observed
gets_documents_attached_to_bid_package - First observed
grant_app_authorization - First observed
index_bid_forms - First observed
initiate_schedule_import_v2_0 - First observed
it_fetches_a_budget_note_v2_0 - First observed
list_accepted_weather_conditions_project - First observed
list_accepted_weather_conditions_project_v1_0 - First observed
list_accident_logs - First observed
list_action_plan_approvers - First observed
list_action_plan_item_assignees - First observed
list_action_plan_items - First observed
list_action_plan_parties - First observed
list_action_plan_receivers - First observed
list_action_plan_references - First observed
list_action_plan_sections - First observed
list_action_plan_template_approvers - First observed
list_action_plan_template_item_assignees - First observed
list_action_plan_template_receivers - First observed
list_action_plan_test_record_requests - First observed
list_action_plan_test_records - First observed
list_action_plan_verification_methods - First observed
list_action_plans - First observed
list_actions - First observed
list_activities_v2_0 - First observed
list_activity_links_v2_0 - First observed
list_affliction_types - First observed
list_all_actual_production_quantities - First observed
list_all_attachments - First observed
list_all_available_permission_templates_for_a_project - First observed
list_all_classification - First observed
list_all_classifications - First observed
list_all_company_managed_equipment_user_permissions - First observed
list_all_direct_cost_line_items - First observed
list_all_equipment_categories - First observed
list_all_equipment_company - First observed
list_all_equipment_logs - First observed
list_all_equipment_makes - First observed
list_all_equipment_models - First observed
list_all_equipment_project - First observed
list_all_equipment_types - First observed
list_all_maintenance_logs_attachment - First observed
list_all_prime_contracts - First observed
list_all_project_budgeted_production_quantities - First observed
list_all_project_budgeted_production_quantity_ids - First observed
list_all_project_crew_ids - First observed
list_all_project_crews - First observed
list_all_project_equipment_ids - First observed
list_all_submittal_attachments_with_download_urls_v1_1 - First observed
list_all_time_and_material_entry - First observed
list_all_time_and_material_entry_configurable_field_sets - First observed
list_all_time_and_material_entry_matching_the_search_keyword - First observed
list_all_timesheets - First observed
list_alternative_response_sets - First observed
list_app_configurations - First observed
list_app_installations_v1_0 - First observed
list_app_installations_v1_0_2 - First observed
list_assignable_users - First observed
list_assignee_company_filter_options - First observed
list_assignee_filter_options - First observed
list_assignees_for_accessible_tasks - First observed
list_available_checklist_item_types - First observed
list_available_filters_for_coordination_issues - First observed
list_available_observation_item_statuses_with_localized_labels - First observed
list_available_rfi_assigned_id_filter_options - First observed
list_available_rfi_ball_in_court_filter_options - First observed
list_available_rfi_cost_code_options - First observed
list_available_rfi_filters - First observed
list_available_rfi_prefix_stage_filter_options - First observed
list_available_rfi_priority_filter_options - First observed
list_available_rfi_received_from_filter_options - First observed
list_available_rfi_responsible_contractor_filter_options - First observed
list_available_rfi_rfi_manager_filter_options - First observed
list_available_rfi_status_filter_options - First observed
list_available_rfi_sub_job_filter_options - First observed
list_available_rfis_locations - First observed
list_available_status_transitions_v2_0 - First observed
list_available_submittal_filters - First observed
list_bid_contacts - First observed
list_bid_packages - First observed
list_bid_packages_v1_1 - First observed
list_bid_uploads - First observed
list_bids_within_a_bid_package - First observed
list_bids_within_a_company - First observed
list_bids_within_a_project - First observed
list_billing_periods - First observed
list_bim_file_extractions - First observed
list_bim_files - First observed
list_bim_levels - First observed
list_bim_model_change_history - First observed
list_bim_model_revision_objects - First observed
list_bim_model_revision_plans - First observed
list_bim_model_revision_properties - First observed
list_bim_model_revision_viewpoints - First observed
list_bim_model_revisions - First observed
list_bim_models - First observed
list_bim_plans - First observed
list_bim_property_file_objects - First observed
list_bim_property_file_properties - First observed
list_bim_view_folders - First observed
list_body_parts - First observed
list_budget_change_summaries - First observed
list_budget_detail_columns - First observed
list_budget_detail_filter_options - First observed
list_budget_details - First observed
list_budget_modifications - First observed
list_budget_view_detail_rows - First observed
list_budget_view_snapshot_detail_rows - First observed
list_budget_view_snapshot_summary_rows - First observed
list_budget_view_snapshots - First observed
list_budget_view_summary_rows - First observed
list_budget_views - First observed
list_calendar_events - First observed
list_calendar_items - First observed
list_calendars_v2_0 - First observed
list_call_logs - First observed
list_change_event_production_quantities - First observed
list_change_event_statuses - First observed
list_change_event_statuses_v2_0 - First observed
list_change_event_types_v2_0 - First observed
list_change_events - First observed
list_change_events_v1_1 - First observed
list_change_history_for_a_generic_tool_item - First observed
list_change_history_for_timesheet - First observed
list_change_order_change_reasons - First observed
list_change_order_change_reasons_v2_0 - First observed
list_change_order_packages - First observed
list_change_order_requests - First observed
list_change_order_statuses - First observed
list_change_types - First observed
list_checklist_inspection_comments - First observed
list_checklist_inspection_schedules - First observed
list_checklist_inspection_sections - First observed
list_checklist_inspections_item_attachments - First observed
list_checklist_inspections_items - First observed
list_checklist_inspections_items_v1_1 - First observed
list_checklist_item_observations - First observed
list_checklist_list_assigned_company_filter_options - First observed
list_checklist_list_closed_by_contact_filter_options - First observed
list_checklist_list_closed_by_contact_filter_options_v2_0 - First observed
list_checklist_list_created_by_contact_filter_options - First observed
list_checklist_list_equipment_filter_options - First observed
list_checklist_list_inspection_type_filter_options - First observed
list_checklist_list_inspector_filter_options - First observed
list_checklist_list_inspector_filter_options_v2_0 - First observed
list_checklist_list_location_filter_options - First observed
list_checklist_list_location_filter_options_v2_0 - First observed
list_checklist_list_point_of_contact_filter_options - First observed
list_checklist_list_point_of_contact_filter_options_v2_0 - First observed
list_checklist_list_responsible_contractor_filter_options - First observed
list_checklist_list_responsible_contractor_filter_options_v2_0 - First observed
list_checklist_list_specification_section_filter_options - First observed
list_checklist_list_specification_section_filter_options_v2_0 - First observed
list_checklist_list_status_filter_options - First observed
list_checklist_list_template_filter_options - First observed
list_checklist_list_template_filter_options_v2_0 - First observed
list_checklist_list_trade_filter_options - First observed
list_checklist_list_trade_filter_options_v2_0 - First observed
list_checklist_list_type_filter_options_v2_0 - First observed
list_checklist_schedule_assignee_filter_options_v2_0 - First observed
list_checklist_schedule_attachments - First observed
list_checklist_schedule_change_histories - First observed
list_checklist_schedule_inspection_template_filter_options_v2_0 - First observed
list_checklist_schedule_inspection_type_filter_options_v2_0 - First observed
list_checklist_signature_requests - First observed
list_checklist_templates - First observed
list_checklists - First observed
list_checklists_inspections - First observed
list_commitment_change_order_line_items_v2_0 - First observed
list_commitment_contract_line_items_v2_0 - First observed
list_commitment_contracts_v2_0 - First observed
list_commitments - First observed
list_communication_tags - First observed
list_communication_threads - First observed
list_companies - First observed
list_company_action_plan_template_item_assignees - First observed
list_company_action_plan_template_items - First observed
list_company_action_plan_template_references - First observed
list_company_action_plan_template_requests - First observed
list_company_action_plan_types - First observed
list_company_checklist_sections - First observed
list_company_checklist_template_sections - First observed
list_company_checklist_templates - First observed
list_company_folders_and_files - First observed
list_company_form_templates - First observed
list_company_form_templates_from_project - First observed
list_company_inactive_users - First observed
list_company_inactive_vendors - First observed
list_company_inspection_template_item_reference - First observed
list_company_inspection_template_items - First observed
list_company_insurances - First observed
list_company_observation_types - First observed
list_company_offices - First observed
list_company_people - First observed
list_company_project_status_snapshots_v2_0 - First observed
list_company_projects - First observed
list_company_roles - First observed
list_company_roles_v2_0 - First observed
list_company_segment_items - First observed
list_company_users_v1_0 - First observed
list_company_users_v1_0_2 - First observed
list_company_users_v1_1 - First observed
list_company_users_v1_1_1 - First observed
list_company_users_v1_2 - First observed
list_company_users_v1_2_1 - First observed
list_company_users_v1_3 - First observed
list_company_users_v1_3_1 - First observed
list_company_vendor_comments - First observed
list_company_vendor_insurances - First observed
list_company_vendors - First observed
list_company_wbs_patterns - First observed
list_company_wbs_segment_item_lists - First observed
list_company_wbs_segments - First observed
list_company_webhooks_deliveries_v2_0 - First observed
list_company_webhooks_hooks_v2_0 - First observed
list_company_webhooks_resources_v2_0 - First observed
list_company_webhooks_triggers_v2_0 - First observed
list_companys_projects - First observed
list_configurable_field_set_project_options - First observed
list_configurable_field_sets - First observed
list_contract_payments - First observed
list_contributing_behaviors - First observed
list_contributing_conditions - First observed
list_coordination_issue_activities - First observed
list_coordination_issue_activity_feed_items - First observed
list_coordination_issue_assignable_users - First observed
list_coordination_issue_change_history - First observed
list_coordination_issue_file_filter_options - First observed
list_coordination_issue_viewpoints_legacy_model_manager_rest_v2 - First observed
list_coordination_issues - First observed
list_coordination_issues_for_a_project_rest_v2_0_v2_0 - First observed
list_coordination_issues_in_recycle_bin - First observed
list_coordination_issues_in_recycle_bin_post - First observed
list_coordination_issues_post - First observed
list_coordination_issues_workflow_issues_v2_0 - First observed
list_correspondence_type_defaults - First observed
list_correspondence_type_items - First observed
list_correspondence_type_permissions - First observed
list_correspondence_type_users - First observed
list_correspondences_company - First observed
list_correspondences_project - First observed
list_cost_codes - First observed
list_cost_codes_for_timesheets - First observed
list_cost_codes_ids_for_timesheets - First observed
list_counts_of_daily_logs - First observed
list_counts_of_daily_logs_v1_1 - First observed
list_creation_source_filter_options - First observed
list_creator_filter_options - First observed
list_custom_field_definitions - First observed
list_custom_field_definitions_configurable_field_sets - First observed
list_custom_field_definitions_v1_1 - First observed
list_custom_field_lov_entries - First observed
list_custom_field_metadata - First observed
list_custom_field_sections - First observed
list_custom_fields_user_options - First observed
list_custom_tool_users - First observed
list_daily_construction_report_logs - First observed
list_daily_construction_report_logs_vendor_options - First observed
list_default_correspondence_types_v2_0 - First observed
list_default_distribution_members - First observed
list_default_task_items_project_distribution_members_v2_0 - First observed
list_delay_log_types - First observed
list_delay_logs - First observed
list_deleted_payouts - First observed
list_deleted_punch_items - First observed
list_deleted_punch_items_v1_1 - First observed
list_delivery_logs - First observed
list_departments - First observed
list_direct_cost_items - First observed
list_direct_cost_items_v1_1 - First observed
list_direct_cost_line_items - First observed
list_distribution_groups - First observed
list_distribution_groups_for_specifications_v2_1 - First observed
list_drawing_areas - First observed
list_drawing_areas_v1_1 - First observed
list_drawing_disciplines - First observed
list_drawing_disciplines_v1_1 - First observed
list_drawing_revision_terms - First observed
list_drawing_revision_terms_v1_1 - First observed
list_drawing_revisions - First observed
list_drawing_sets - First observed
list_drawing_tiles - First observed
list_drawing_uploads - First observed
list_drawing_uploads_v1_1 - First observed
list_drawings - First observed
list_drawings_v1_1 - First observed
list_dumpster_logs - First observed
list_early_pay_programs - First observed
list_ecrion_xml_and_template_for_meetings - First observed
list_ecrion_xml_and_template_for_meetings_v1_1 - First observed
list_environmental_types - First observed
list_environmentals - First observed
list_equipment - First observed
list_equipment_logs - First observed
list_equipment_maintenance_logs - First observed
list_equipment_timecard_entries_project - First observed
list_field_production_report_summary - First observed
list_filter_options_for_approvers - First observed
list_filter_options_for_attachments - First observed
list_filter_options_for_ball_in_court - First observed
list_filter_options_for_ball_in_court_company - First observed
list_filter_options_for_buffer_time - First observed
list_filter_options_for_cost_code - First observed
list_filter_options_for_created_by - First observed
list_filter_options_for_created_via - First observed
list_filter_options_for_current_revision - First observed
list_filter_options_for_design_team_review_time - First observed
list_filter_options_for_for_record_only - First observed
list_filter_options_for_internal_review_time - First observed
list_filter_options_for_is_rejected - First observed
list_filter_options_for_lead_time - First observed
list_filter_options_for_location - First observed
list_filter_options_for_prepare_time - First observed
list_filter_options_for_private - First observed
list_filter_options_for_received_from - First observed
list_filter_options_for_responsible_contractor - First observed
list_filter_options_for_specification_area - First observed
list_filter_options_for_specification_division - First observed
list_filter_options_for_specification_section - First observed
list_filter_options_for_submittal_manager - First observed
list_filter_options_for_submittal_package - First observed
list_filter_options_for_submittal_response - First observed
list_filter_options_for_submittal_revision - First observed
list_filter_options_for_submittal_scheduled_task - First observed
list_filter_options_for_submittal_status - First observed
list_filter_options_for_submittal_sub_job - First observed
list_filter_options_for_submittal_unpackaged - First observed
list_filter_options_for_submittal_workflow_template - First observed
list_filter_options_for_type - First observed
list_filters_company - First observed
list_filters_project - First observed
list_forms_on_a_project - First observed
list_forms_on_a_project_v1_1 - First observed
list_generic_tool_items - First observed
list_generic_tools - First observed
list_gps_positions - First observed
list_grouped_checklists_inspections - First observed
list_grouped_coordination_issue_status_count - First observed
list_grouped_recycled_checklists_inspections - First observed
list_harm_sources - First observed
list_hazards - First observed
list_image_categories - First observed
list_image_category_ids_that_contain_images - First observed
list_images - First observed
list_inactive_company_people - First observed
list_inactive_project_people - First observed
list_incident_action_types - First observed
list_incident_alert_recipients - First observed
list_incident_alerts - First observed
list_incident_filing_types - First observed
list_incident_severity_levels - First observed
list_incidents - First observed
list_injuries - First observed
list_inspection_item_references - First observed
list_inspection_logs - First observed
list_inspection_types - First observed
list_inspection_users_v1_1 - First observed
list_inspectors - First observed
list_instruction_types_on_a_project - First observed
list_instructions_on_a_project - First observed
list_item_response_sets - First observed
list_lien_waivers - First observed
list_line_item_types - First observed
list_links - First observed
list_location_filter_options - First observed
list_locations - First observed
list_lookaheads - First observed
list_lookaheads_v1_1 - First observed
list_manpower_logs - First observed
list_manpower_logs_contact_options - First observed
list_manpower_logs_vendor_options - First observed
list_manual_forecast_line_items - First observed
list_manual_holds_for_a_given_invoice - First observed
list_materials - First observed
list_meeting_categories - First observed
list_meeting_templates - First observed
list_meetings - First observed
list_meetings_v1_1 - First observed
list_monitoring_resources - First observed
list_near_misses - First observed
list_notes_logs - First observed
list_observation_assignee_options - First observed
list_observation_category_configurable_field_sets - First observed
list_observation_default_distribution_members - First observed
list_observation_item_response_logs - First observed
list_observation_items - First observed
list_observation_potential_distribution_members - First observed
list_observation_types - First observed
list_observations_response_logs - First observed
list_of_actual_production_quantity_ids - First observed
list_of_all_time_and_material_equipment_logs - First observed
list_of_budget_change_histories_v2_0 - First observed
list_of_change_history_events_for_an_action_plan_v2_0 - First observed
list_of_company_action_plan_templates - First observed
list_of_company_action_plan_templates_v1_1 - First observed
list_of_company_level_emails - First observed
list_of_deleted_submittals - First observed
list_of_deleted_submittals_v1_1 - First observed
list_of_document_revisions_company_v2_0 - First observed
list_of_document_revisions_project_v2_0 - First observed
list_of_emails - First observed
list_of_number_filter_options - First observed
list_of_project_action_plan_templates - First observed
list_of_punch_list_assignee_filter_options - First observed
list_of_punch_list_vendor_filter_options - First observed
list_of_purchase_order_contracts - First observed
list_operations_v2_0 - First observed
list_payee_bank_details - First observed
list_payment_applications_owner_invoices_for_a_project - First observed
list_payment_applications_owner_invoices_for_prime_contract - First observed
list_payment_project_configurations - First observed
list_payments_beneficiaries - First observed
list_payments_subtier_waivers - First observed
list_payments_subtiers_for_the_commitment - First observed
list_payments_subtiers_for_the_requisition - First observed
list_pdf_template_configs - First observed
list_permission_templates - First observed
list_permission_templates_for_a_company_user - First observed
list_plan_revision_logs - First observed
list_possible_assignees_company_v2_0 - First observed
list_possible_assignees_project_v2_0 - First observed
list_possible_tool_filter_values - First observed
list_potential_change_order_line_items - First observed
list_potential_change_orders - First observed
list_potential_distribution_members_for_specifications_v2_1 - First observed
list_potential_points_of_contact - First observed
list_prime_change_order_line_items_v2_0 - First observed
list_prime_contract_line_items - First observed
list_prime_contract_line_items_v2_0 - First observed
list_prime_contracts_v2_0 - First observed
list_productivity_logs - First observed
list_programs - First observed
list_programs_for_a_company_user - First observed
list_project_action_plan_template_items - First observed
list_project_action_plan_template_references - First observed
list_project_action_plan_template_sections - First observed
list_project_action_plan_template_test_record_requests - First observed
list_project_assignments_for_a_company_user - First observed
list_project_bid_types - First observed
list_project_checklist_templates - First observed
list_project_checklist_templates_v1_1 - First observed
list_project_configurable_field_sets - First observed
list_project_cost_codes - First observed
list_project_country_codes - First observed
list_project_dates_v1_0 - First observed
list_project_dates_v1_0_2 - First observed
list_project_dates_v2_0 - First observed
list_project_distribution_groups_v1_0 - First observed
list_project_distribution_groups_v1_0_2 - First observed
list_project_document_custom_tags - First observed
list_project_equipment_logs - First observed
list_project_equipment_maintenance_logs - First observed
list_project_folders_and_files - First observed
list_project_inactive_users - First observed
list_project_inactive_vendors - First observed
list_project_inspection_template_item_reference - First observed
list_project_insurances - First observed
list_project_job_titles - First observed
list_project_links_v2_0 - First observed
list_project_locations - First observed
list_project_memberships - First observed
list_project_names_for_a_company_user - First observed
list_project_numbers_for_a_company_user - First observed
list_project_observation_types - First observed
list_project_owner_types - First observed
list_project_people - First observed
list_project_permission_templates - First observed
list_project_punch_item_templates - First observed
list_project_regions - First observed
list_project_roles - First observed
list_project_segment_items - First observed
list_project_stages - First observed
list_project_stages_for_a_company_user - First observed
list_project_state_codes - First observed
list_project_status_snapshots_v2_0 - First observed
list_project_templates - First observed
list_project_tools_v1_0 - First observed
list_project_tools_v1_0_2 - First observed
list_project_trades - First observed
list_project_types - First observed
list_project_types_for_a_company_user - First observed
list_project_users - First observed
list_project_vendor_insurances - First observed
list_project_vendors - First observed
list_project_vendors_v1_1 - First observed
list_project_wbs_codes - First observed
list_project_wbs_patterns - First observed
list_project_wbs_segments - First observed
list_project_wbs_task_codes - First observed
list_project_webhooks_deliveries_v2_0 - First observed
list_project_webhooks_hooks_v2_0 - First observed
list_project_webhooks_resources_v2_0 - First observed
list_project_webhooks_triggers_v2_0 - First observed
list_projects - First observed
list_projects_v1_1 - First observed
list_property_damages - First observed
list_punch_item_assignee_company_filter_options_v2_0 - First observed
list_punch_item_assignee_filter_options_v2_0 - First observed
list_punch_item_ball_in_court_filter_options_v2_0 - First observed
list_punch_item_closed_by_contact_filter_options_v2_0 - First observed
list_punch_item_creator_filter_options_v2_0 - First observed
list_punch_item_default_distribution_list - First observed
list_punch_item_final_approver_filter_options_v2_0 - First observed
list_punch_item_location_filter_options_v2_0 - First observed
list_punch_item_manager_filter_options_v2_0 - First observed
list_punch_item_trade_filter_options_v2_0 - First observed
list_punch_item_type_filter_options_v2_0 - First observed
list_punch_item_types - First observed
list_punch_items - First observed
list_punch_items_v1_1 - First observed
list_punch_list_assignee_options - First observed
list_punch_list_manager_options - First observed
list_punch_list_read_user_options - First observed
list_purchase_order_contract_detail_line_items - First observed
list_purchase_order_contract_line_items - First observed
list_quantity_logs - First observed
list_recent_activity_items - First observed
list_recycled_action_plan - First observed
list_recycled_action_plan_item_assignees - First observed
list_recycled_action_plan_items - First observed
list_recycled_action_plan_references - First observed
list_recycled_action_plan_sections - First observed
list_recycled_action_plan_template_approvers - First observed
list_recycled_action_plan_template_items - First observed
list_recycled_action_plan_template_receivers - First observed
list_recycled_action_plan_template_sections - First observed
list_recycled_action_plan_test_record_requests - First observed
list_recycled_actions - First observed
list_recycled_actions_v1_1 - First observed
list_recycled_checklist_inspection_comments - First observed
list_recycled_checklist_inspection_sections_v1_1 - First observed
list_recycled_checklist_inspections_item_attachments - First observed
list_recycled_checklist_templates - First observed
list_recycled_checklists_inspections - First observed
list_recycled_company_action_plan_template_items_assignees - First observed
list_recycled_company_action_plan_template_references - First observed
list_recycled_company_action_plan_template_test_record_requests - First observed
list_recycled_company_action_plan_templates - First observed
list_recycled_company_action_plan_templates_v1_1 - First observed
list_recycled_company_checklist_templates - First observed
list_recycled_company_form_templates - First observed
list_recycled_environmentals - First observed
list_recycled_incidents - First observed
list_recycled_injuries - First observed
list_recycled_links - First observed
list_recycled_near_misses - First observed
list_recycled_observation_items - First observed
list_recycled_project_action_plan_template_references - First observed
list_recycled_project_forms - First observed
list_recycled_property_damages - First observed
list_recycled_rfis - First observed
list_recycled_witness_statements - First observed
list_recycled_witness_statements_v1_1 - First observed
list_recyled_action_plan_test_records - First observed
list_regions_for_a_company_user - First observed
list_requested_changes - First observed
list_requested_changes_for_a_schedule_or_a_task_v1_1 - First observed
list_requisition_compliance_attachments_v2_0 - First observed
list_requisition_compliance_documents_v2_0 - First observed
list_requisition_subcontractor_invoice_change_histories - First observed
list_requisition_subcontractor_invoice_change_order_items - First observed
list_requisition_subcontractor_invoice_contract_detail_items - First observed
list_requisition_subcontractor_invoice_contract_items - First observed
list_requisitions_subcontractor_invoices_for_project - First observed
list_requisitions_subcontractor_invoices_for_project_v1_1 - First observed
list_resources - First observed
list_resources_v1_1 - First observed
list_responses - First observed
list_responses_for_a_generic_tool_item - First observed
list_responses_in_the_specified_item_response_set - First observed
list_rfi_default_distribution - First observed
list_rfi_replies - First observed
list_rfis - First observed
list_rfq_quotes - First observed
list_rfq_responses - First observed
list_rfqs - First observed
list_roles_for_a_company_user - First observed
list_safety_violation_logs - First observed
list_schedule_imports - First observed
list_schedule_resources - First observed
list_schedules_v2_0 - First observed
list_signatures_project - First observed
list_signatures_project_v1_0 - First observed
list_specification_areas_for_a_project_v2_1 - First observed
list_specification_configurations_v2_1 - First observed
list_specification_section_divisions_for_a_project - First observed
list_specification_section_revisions_for_a_specification - First observed
list_specification_section_terms - First observed
list_specification_section_terms_v1_1 - First observed
list_specification_sections - First observed
list_specification_sets - First observed
list_specification_uploads - First observed
list_standard_cost_code_lists - First observed
list_standard_cost_codes - First observed
list_status_change_history_for_a_coordination_issue - First observed
list_status_filter_options - First observed
list_statuses_available_for_a_generic_tool - First observed
list_statuses_for_a_generic_tool - First observed
list_sub_jobs - First observed
list_submittal_associated_attachments - First observed
list_submittal_packages_on_a_project - First observed
list_submittal_responses_project - First observed
list_submittal_responses_v1_0 - First observed
list_submittal_statuses - First observed
list_submittal_types - First observed
list_submittals - First observed
list_submittals_on_a_project - First observed
list_submittals_on_a_project_v1_1 - First observed
list_task_item_categories - First observed
list_task_item_comments - First observed
list_task_items - First observed
list_task_items_assignee_options - First observed
list_task_items_distribution_member_options_v2_0 - First observed
list_tasks - First observed
list_tax_codes - First observed
list_tax_types - First observed
list_time_and_material_timecards - First observed
list_timecard_data - First observed
list_timecard_entries - First observed
list_timecard_entries_company - First observed
list_timecard_entries_project - First observed
list_timecard_time_types_company - First observed
list_timecard_time_types_v1_0 - First observed
list_timeline_events_v2_0 - First observed
list_tools_enabled_for_workflows_v2_0 - First observed
list_trades - First observed
list_unit_of_measure_categories - First observed
list_units_of_measure - First observed
list_users_with_access_to_a_generic_tool - First observed
list_users_with_access_to_a_generic_tool_item - First observed
list_visitor_logs - First observed
list_waste_logs - First observed
list_watcher_filter_options - First observed
list_wbs_attribute_items_v2_0 - First observed
list_wbs_attributes_v2_0 - First observed
list_wbs_code_ids_v2_0 - First observed
list_wbs_codes_filter_options_v2_0 - First observed
list_wbs_codes_filters_v2_0 - First observed
list_wbs_codes_v2_0 - First observed
list_weather_logs - First observed
list_weather_logs_v1_1 - First observed
list_webhooks_deliveries - First observed
list_webhooks_hooks - First observed
list_webhooks_resources - First observed
list_webhooks_resources_api_versions - First observed
list_webhooks_triggers - First observed
list_witness_statements - First observed
list_work_activities - First observed
list_work_logs - First observed
list_work_order_contract_detail_line_items - First observed
list_work_order_contract_line_items - First observed
list_work_order_contracts - First observed
list_workflow_activity_histories - First observed
list_workflow_instances - First observed
list_workflow_instances_company_v2_0 - First observed
list_workflow_instances_project_v2_0 - First observed
list_workflow_managers_company_v2_0 - First observed
list_workflow_managers_project_v2_0 - First observed
list_workflow_permanent_logs_company - First observed
list_workflow_permanent_logs_project - First observed
list_workflow_presets_company_v2_0 - First observed
list_workflow_presets_project_v2_0 - First observed
list_workflow_templates_v2_0 - First observed
lists_the_app_and_tool_level_permissions_for_the_user - First observed
make_job_title_available_to_group - First observed
make_tag_from_being_available_to_group - First observed
merges_one_or_more_pdfs_of_a_requisition_into_a_single_pdf - First observed
modify_an_existing_markup - First observed
modify_markups - First observed
move_action_plan_back_into_draft - First observed
move_action_plan_into_in_progress - First observed
move_action_plan_item_within_or_across_sections - First observed
move_action_plan_section - First observed
move_catalog_v2_0 - First observed
move_company_action_plan_template_into_in_revision - First observed
move_company_action_plan_template_into_in_revision_v1_1 - First observed
move_company_action_plan_template_into_published - First observed
move_company_action_plan_template_into_published_v1_1 - First observed
patch_company_role_v2_0 - First observed
post_company_role_v2_0 - First observed
procore_api_call - First observed
procore_discover_categories - First observed
procore_discover_endpoints - First observed
procore_get_config - First observed
procore_get_endpoint_details - First observed
procore_search_endpoints - First observed
procore_set_config - First observed
project_folder_and_file_index - First observed
project_folder_and_file_index_v2_0 - First observed
punch_list_available_final_approvers - First observed
reactivate_company_user - First observed
reactivate_company_vendor - First observed
reactivate_project_user - First observed
reactivate_project_vendor - First observed
recycle_rfi - First observed
remove_a_person_from_a_group - First observed
remove_a_response_from_an_item_response_set - First observed
remove_a_user_from_the_project - First observed
remove_alternative_response_set_from_project_checklist_template - First observed
remove_an_existing_markup - First observed
remove_change_order_package_from_a_requisition_subcontractor - First observed
remove_checklist_template_alternative_response_set - First observed
remove_company_checklist_template_alternative_response_set - First observed
remove_current_project_company_v2_0 - First observed
remove_current_project_company_v2_1 - First observed
remove_current_project_project_v2_0 - First observed
remove_current_project_project_v2_1 - First observed
remove_job_title_from_being_available_to_group - First observed
remove_role_from_project - First observed
remove_segment_from_the_project_pattern - First observed
remove_signature_from_timecard_entry_project - First observed
remove_tag_availablility_to_group - First observed
remove_tag_instance_from_person - First observed
remove_tag_instance_from_project - First observed
remove_values_from_custom_field - First observed
remove_viewpoint_association_from_issue_rest_v2_0_mm_soft - First observed
reorder_company_role_v2_0 - First observed
respond_to_a_workflow_instance_company_v2_0 - First observed
respond_to_a_workflow_instance_project_v2_0 - First observed
restart_a_workflow_instance_company_v2_0 - First observed
restart_a_workflow_instance_project_v2_0 - First observed
restore_a_recycled_company_checklist_template - First observed
restore_a_time_and_material_entry - First observed
restore_change_event_v1_1 - First observed
restore_company_form_template - First observed
restore_coordination_issue_from_recycle_bin - First observed
restore_deleted_checklist_inspection - First observed
restore_deleted_checklist_inspection_v1_1 - First observed
restore_equipment_company_v2_0 - First observed
restore_project_form - First observed
restore_recycled_action_plan - First observed
restore_recycled_checklist_template - First observed
restore_recycled_checklist_template_v1_1 - First observed
restore_recycled_company_action_plan_template - First observed
restore_recycled_company_action_plan_template_v1_1 - First observed
restoring_an_equipment - First observed
retrieve_a_line_item_by_id_v2_0_company - First observed
retrieve_a_line_item_by_id_v2_0_project - First observed
retrieve_a_line_item_group_by_id_v2_0_company - First observed
retrieve_a_line_item_group_by_id_v2_0_project - First observed
retrieve_a_list_of_markups - First observed
retrieve_a_note_by_id_in_the_project_v2_0_company - First observed
retrieve_a_note_by_id_in_the_project_v2_0_company_v2_0 - First observed
retrieve_a_project_proposal_by_id_v2_0_company - First observed
retrieve_a_project_proposal_by_id_v2_0_company_v2_0 - First observed
retrieve_a_single_webhook_for_company_v2_0 - First observed
retrieve_a_single_webhook_for_project_v2_0 - First observed
retrieve_all_line_item_groups_of_a_proposal_v2_0_company - First observed
retrieve_all_line_item_groups_of_a_proposal_v2_0_project - First observed
retrieve_all_line_items_of_a_proposal_v2_0_company - First observed
retrieve_all_line_items_of_a_proposal_v2_0_project - First observed
retrieve_all_notes_in_the_project_v2_0_company - First observed
retrieve_all_notes_in_the_project_v2_0_company_v2_0 - First observed
retrieve_all_project_proposals_v2_0_company - First observed
retrieve_all_project_proposals_v2_0_company_v2_0 - First observed
retrieve_details_for_the_markup - First observed
retrieve_environmental - First observed
retrieve_equipment - First observed
retrieve_property_damage - First observed
retrieve_recycled_action - First observed
retrieve_recycled_action_v1_1 - First observed
retrieve_recycled_incident - First observed
retrieve_recycled_injury - First observed
retrieve_recycled_link - First observed
retrieve_recycled_near_miss - First observed
retrieve_recycled_observation - First observed
retrieve_recycled_rfi - First observed
retrieve_recycled_witness_statement - First observed
retrieve_recycled_witness_statement_v1_1 - First observed
retrieves_the_status_of_the_asyncronous_job_that_a_bulk_users - First observed
return_a_filter - First observed
return_a_list_of_all_submittals_v2_0 - First observed
return_a_pdf_template_config - First observed
return_company_schedule_summary - First observed
returns_avatar_of_the_current_user - First observed
returns_specific_template - First observed
review_requested_changes - First observed
review_requested_changes_v1_1 - First observed
revoke_a_persons_login - First observed
revoke_token - First observed
save_aemp_2_0_telematics_data_v2_0 - First observed
save_aemp_2_0_telematics_data_v2_1 - First observed
save_markups - First observed
save_stamp - First observed
save_stamp_v2_0 - First observed
save_telematics_stats_data_v2_0 - First observed
search_all_equipment_company - First observed
search_all_equipment_project - First observed
send_a_response_from_a_generic_tool_item_and_then_update_the - First observed
send_all_unsent_punch_item_emails - First observed
send_all_unsent_punch_item_emails_v1_1 - First observed
send_checklist_inspection_email - First observed
send_email_for_file_sharing - First observed
send_email_project - First observed
send_email_project_v1_0 - First observed
send_invite - First observed
send_invite_v1_1 - First observed
send_invite_v1_2 - First observed
send_invite_v1_3 - First observed
send_observation_item_email - First observed
send_punch_item_email - First observed
send_punch_item_email_v1_1 - First observed
send_unsent_observation_items - First observed
send_unsent_punch_items - First observed
send_unsent_punch_items_v1_1 - First observed
send_unsent_task_items - First observed
send_urgent_error - First observed
set_current_project_company_v2_0 - First observed
set_current_project_project_v2_0 - First observed
setup_managed_equipment_taxonomy - First observed
show_a_bid_within_a_company - First observed
show_a_bid_within_a_project - First observed
show_a_budgeted_production_quantity - First observed
show_a_commitment_contract - First observed
show_a_company_inspection_template_item_evidence_configuration - First observed
show_a_compliance_document_project - First observed
show_a_compliance_document_project_v1_0 - First observed
show_a_coordination_issue_rest_v2_0_v2_0 - First observed
show_a_crew - First observed
show_a_inspection_item_signature_request_v2_0 - First observed
show_a_meeting_template - First observed
show_a_project_inspection_template_item_evidence_configuration - First observed
show_a_signature_company - First observed
show_a_signature_project - First observed
show_a_signature_project_v1_0 - First observed
show_a_timesheet - First observed
show_accident_logs - First observed
show_action - First observed
show_action_plan - First observed
show_action_plan_approver_signature - First observed
show_action_plan_item - First observed
show_action_plan_item_assignee - First observed
show_action_plan_item_assignee_signature - First observed
show_action_plan_receiver_signature - First observed
show_action_plan_reference - First observed
show_action_plan_section - First observed
show_action_plan_template_approver - First observed
show_action_plan_template_receiver - First observed
show_action_plan_test_record_request - First observed
show_action_plan_verification_method - First observed
show_actual_production_quantity - First observed
show_affliction_type - First observed
show_all_commitment_change_order_batches - First observed
show_all_commitment_change_orders - First observed
show_all_prime_change_order_batches - First observed
show_all_prime_change_orders - First observed
show_alternative_response_set - First observed
show_an_async_job_for_a_company - First observed
show_an_equipment_category - First observed
show_an_equipment_log - First observed
show_an_equipment_make - First observed
show_an_equipment_model - First observed
show_an_equipment_type - First observed
show_an_individual_managed_equipment_maintenance_log_attachment - First observed
show_an_individual_time_and_material_attachment - First observed
show_an_project_equipment_log - First observed
show_app_configuration - First observed
show_app_installation - First observed
show_bid_package_company - First observed
show_bid_package_project - First observed
show_bids_within_a_bid_package - First observed
show_billing_period_for_project - First observed
show_bim_file - First observed
show_bim_file_extraction - First observed
show_bim_geometry_file_bundle - First observed
show_bim_level - First observed
show_bim_model - First observed
show_bim_model_revision - First observed
show_bim_model_revision_plan - First observed
show_bim_plan - First observed
show_bim_viewpoint - First observed
show_budget_line_item - First observed
show_budget_line_item_v1_1 - First observed
show_budget_meta_data - First observed
show_budget_modification - First observed
show_calendar_item - First observed
show_call_logs - First observed
show_change_event - First observed
show_change_event_v1_1 - First observed
show_change_history - First observed
show_change_order_package - First observed
show_change_order_request - First observed
show_checklist - First observed
show_checklist_comment - First observed
show_checklist_inspection - First observed
show_checklist_item - First observed
show_checklist_item_response - First observed
show_checklist_item_type - First observed
show_checklist_schedule - First observed
show_checklist_section - First observed
show_checklist_signature_request - First observed
show_checklist_template - First observed
show_classification_company - First observed
show_classification_project - First observed
show_commitment_change_order - First observed
show_commitment_change_order_batch - First observed
show_commitment_change_order_line_item_v2_0 - First observed
show_commitment_contract_line_item_v2_0 - First observed
show_commitment_contract_summary_v2_0 - First observed
show_commitment_contract_v2_0 - First observed
show_communication - First observed
show_communication_thread - First observed
show_company_action_plan_template - First observed
show_company_action_plan_template_item_assignee - First observed
show_company_action_plan_template_reference - First observed
show_company_action_plan_template_test_record_request - First observed
show_company_action_plan_template_v1_1 - First observed
show_company_action_plan_type - First observed
show_company_checklist_section - First observed
show_company_checklist_template - First observed
show_company_configuration - First observed
show_company_file - First observed
show_company_file_version - First observed
show_company_folder - First observed
show_company_form_template - First observed
show_company_form_template_from_project - First observed
show_company_inspection_template_item - First observed
show_company_inspection_template_item_reference - First observed
show_company_insurance - First observed
show_company_level_email_communication - First observed
show_company_office - First observed
show_company_security_settings_v2_0 - First observed
show_company_segment_item - First observed
show_company_upload - First observed
show_company_upload_v1_1 - First observed
show_company_user_v1_0 - First observed
show_company_user_v1_0_2 - First observed
show_company_user_v1_1 - First observed
show_company_user_v1_1_1 - First observed
show_company_user_v1_2 - First observed
show_company_user_v1_3 - First observed
show_company_user_v1_3_1 - First observed
show_company_vendor - First observed
show_company_vendor_insurance - First observed
show_company_wbs_segment - First observed
show_compliance_documents_for_a_contract_project - First observed
show_compliance_documents_for_a_contract_project_v1_0 - First observed
show_compliance_information_for_a_purchase_order_contract - First observed
show_compliance_information_for_a_work_order_contract - First observed
show_configurable_field_set - First observed
show_contract_payment - First observed
show_contributing_behavior - First observed
show_contributing_condition - First observed
show_coordination_issue - First observed
show_coordination_issue_count_by_status - First observed
show_coordination_issue_in_recycle_bin - First observed
show_coordination_issue_workflow_issue_v2_0 - First observed
show_correspondence_company - First observed
show_correspondence_project - First observed
show_cost_code - First observed
show_current_company_user - First observed
show_current_company_user_v1_1 - First observed
show_current_company_user_v1_2 - First observed
show_current_company_user_v1_3 - First observed
show_custom_field_definition - First observed
show_custom_field_lov_entry - First observed
show_custom_field_metadatum - First observed
show_custom_fields_section - First observed
show_daily_construction_report_logs - First observed
show_delay_logs - First observed
show_delivery_log - First observed
show_department - First observed
show_detail_for_requisition_subcontractor_invoice - First observed
show_direct_cost_item - First observed
show_direct_cost_item_v1_1 - First observed
show_direct_cost_line_item - First observed
show_drawing_revision - First observed
show_drawing_upload_v1_1 - First observed
show_dumpster_logs - First observed
show_early_pay_program - First observed
show_email_communication - First observed
show_environmental - First observed
show_equipment_change_history - First observed
show_equipment_company - First observed
show_equipment_logs - First observed
show_equipment_maintenance_log - First observed
show_equipment_project - First observed
show_equipment_timecard_entry_project - First observed
show_filing_type - First observed
show_first_prime_contract - First observed
show_form - First observed
show_generic_tool_item_project - First observed
show_generic_tool_item_v1_0 - First observed
show_gps_position - First observed
show_harm_source - First observed
show_hazard - First observed
show_image - First observed
show_image_category - First observed
show_incident - First observed
show_incident_action_type - First observed
show_incident_alert - First observed
show_incident_alert_recipient - First observed
show_incident_severity_level - First observed
show_injury - First observed
show_inspection_logs - First observed
show_inspection_type - First observed
show_instruction - First observed
show_instruction_type - First observed
show_item_response_set - First observed
show_item_response_set_response - First observed
show_line_item_type - First observed
show_link - First observed
show_location - First observed
show_lookahead - First observed
show_lookahead_v1_1 - First observed
show_manpower_logs - First observed
show_material - First observed
show_meeting - First observed
show_meeting_v1_1 - First observed
show_near_miss - First observed
show_new_change_event_v1_1 - First observed
show_next_available_number_for_observation_items - First observed
show_notes_logs - First observed
show_observation_item - First observed
show_or_create_document_markup_downloadable_pdf - First observed
show_payment_application_owner_invoice - First observed
show_payments_beneficiary - First observed
show_permission_manifest - First observed
show_plan_revision_logs - First observed
show_potential_change_order_line_item - First observed
show_potential_change_orders - First observed
show_prime_change_order - First observed
show_prime_change_order_batch - First observed
show_prime_change_order_line_item_v2_0 - First observed
show_prime_contract - First observed
show_prime_contract_line_item - First observed
show_prime_contract_line_item_v2_0 - First observed
show_prime_contract_summary_v2_0 - First observed
show_prime_contract_v2_0 - First observed
show_productivity_logs - First observed
show_program - First observed
show_project - First observed
show_project_action_plan_template_reference - First observed
show_project_bid_type - First observed
show_project_checklist_template - First observed
show_project_checklist_template_v1_1 - First observed
show_project_date_v1_0 - First observed
show_project_date_v1_0_2 - First observed
show_project_distribution_group_v1_0 - First observed
show_project_distribution_group_v1_0_2 - First observed
show_project_equipment_maintenance_log - First observed
show_project_file - First observed
show_project_file_version - First observed
show_project_folder - First observed
show_project_inspection_template_item_reference - First observed
show_project_insurance - First observed
show_project_location - First observed
show_project_owner_type - First observed
show_project_region - First observed
show_project_schedule_settings - First observed
show_project_stage - First observed
show_project_type - First observed
show_project_upload - First observed
show_project_upload_v1_1 - First observed
show_project_user - First observed
show_project_vendor - First observed
show_project_vendor_insurance - First observed
show_project_vendor_v1_1 - First observed
show_project_wbs_segment - First observed
show_property_damage - First observed
show_punch_assignment - First observed
show_punch_item - First observed
show_punch_item_type - First observed
show_punch_item_v1_1 - First observed
show_purchase_order_contract - First observed
show_purchase_order_contract_detail_line_item - First observed
show_purchase_order_contract_line_item - First observed
show_quantity_logs - First observed
show_recent_timecard_entry_wbs_code_ids_deprecated_v1_1 - First observed
show_recycled_action - First observed
show_recycled_action_plan - First observed
show_recycled_action_plan_item - First observed
show_recycled_action_plan_item_assignee - First observed
show_recycled_action_plan_reference - First observed
show_recycled_action_plan_section - First observed
show_recycled_action_plan_template_approver - First observed
show_recycled_action_plan_template_items - First observed
show_recycled_action_plan_template_receiver - First observed
show_recycled_action_plan_template_section - First observed
show_recycled_action_plan_test_record - First observed
show_recycled_action_plan_test_record_request - First observed
show_recycled_action_v1_1 - First observed
show_recycled_checklist_inspection - First observed
show_recycled_checklist_template - First observed
show_recycled_company_action_plan_template - First observed
show_recycled_company_action_plan_template_items_assignee - First observed
show_recycled_company_action_plan_template_reference - First observed
show_recycled_company_action_plan_template_test_record_request - First observed
show_recycled_company_action_plan_template_v1_1 - First observed
show_recycled_company_checklist_template - First observed
show_recycled_company_form_template - First observed
show_recycled_environmental - First observed
show_recycled_incident - First observed
show_recycled_injury - First observed
show_recycled_near_miss - First observed
show_recycled_observation - First observed
show_recycled_project_action_plan_template_reference - First observed
show_recycled_project_form - First observed
show_recycled_property_damage - First observed
show_recycled_witness_statement - First observed
show_recycled_witness_statement_v1_1 - First observed
show_requisition_subcontractor_invoice - First observed
show_requisition_subcontractor_invoice_change_order_item - First observed
show_requisition_subcontractor_invoice_contract_detail_item - First observed
show_requisition_subcontractor_invoice_contract_item - First observed
show_requisition_subcontractor_invoice_v1_1 - First observed
show_resource - First observed
show_resource_assignment_v1_1 - First observed
show_resource_v1_1 - First observed
show_response - First observed
show_rfi - First observed
show_rfi_in_pdf_format - First observed
show_rfi_reply - First observed
show_rfq - First observed
show_rfq_quote - First observed
show_rfq_response - First observed
show_rounding_configuration - First observed
show_safety_violation_logs - First observed
show_specification_section_revision - First observed
show_specification_set - First observed
show_standard_cost_code - First observed
show_standard_cost_code_list - First observed
show_sub_job - First observed
show_submittal_in_pdf_format_v1_1 - First observed
show_submittal_project - First observed
show_submittal_v1_0 - First observed
show_submittal_v1_1 - First observed
show_task - First observed
show_task_item - First observed
show_tax_code - First observed
show_tax_type - First observed
show_the_schedule_integration_type_for_a_project - First observed
show_time_and_material_entry - First observed
show_time_and_material_equipment_log - First observed
show_time_and_material_notification - First observed
show_time_and_material_timecard - First observed
show_timecard_entry - First observed
show_timecard_entry_change_history_company - First observed
show_timecard_entry_company - First observed
show_timecard_entry_project - First observed
show_timesheet_approval_status_filters - First observed
show_timesheet_billable_filters - First observed
show_timesheet_created_by_filters - First observed
show_timesheet_crews_filters - First observed
show_timesheet_department_filters - First observed
show_timesheet_employee_filters - First observed
show_timesheet_employee_id_filters - First observed
show_timesheet_location_filters - First observed
show_timesheet_office_filters - First observed
show_timesheet_project_filters - First observed
show_timesheet_region_filters - First observed
show_timesheet_sub_job_filters - First observed
show_timesheet_time_type_filters - First observed
show_timesheet_to_budget_configuration - First observed
show_timesheet_wbs_code_filters - First observed
show_timesheet_work_classification_filters - First observed
show_todo - First observed
show_trade - First observed
show_unit_of_measure - First observed
show_user_info - First observed
show_visitor_logs - First observed
show_waste_logs - First observed
show_weather_log_v1_1 - First observed
show_weather_logs - First observed
show_witness_statement - First observed
show_work_activity - First observed
show_work_logs - First observed
show_work_order_contract - First observed
show_work_order_contract_detail_line_item - First observed
show_work_order_contract_line_item - First observed
show_workflow_activity_history - First observed
show_workflow_instance - First observed
sync_budget_line_items - First observed
sync_calendar_items - First observed
sync_change_order_requests - First observed
sync_company_insurances - First observed
sync_company_insurances_alternative - First observed
sync_company_users - First observed
sync_company_users_v1_1 - First observed
sync_company_users_v1_2 - First observed
sync_company_users_v1_3 - First observed
sync_company_vendor_insurances - First observed
sync_company_vendors - First observed
sync_cost_codes - First observed
sync_direct_cost_items - First observed
sync_direct_cost_line_items - First observed
sync_line_item_types - First observed
sync_potential_change_order_line_items - First observed
sync_potential_change_orders - First observed
sync_prime_contract_line_items - First observed
sync_project_insurances - First observed
sync_project_vendor_insurances - First observed
sync_projects - First observed
sync_purchase_order_contract_line_items - First observed
sync_purchase_order_contracts - First observed
sync_standard_cost_codes - First observed
sync_sub_jobs - First observed
sync_tasks - First observed
sync_tax_codes - First observed
sync_tax_types - First observed
sync_todos - First observed
sync_units_of_measure - First observed
sync_work_order_contract_line_items - First observed
sync_work_order_contracts - First observed
terminate_a_workflow_instance_company_public_v2_0 - First observed
terminate_a_workflow_instance_project_public_v2_0 - First observed
toggle_checklist_section_not_applicable_status_v1_0 - First observed
toggle_checklist_section_not_applicable_status_v1_0_2 - First observed
unassign_the_attribute_items_from_the_wbs_codes_v2_0 - First observed
update_a_bid_from_a_bid_package - First observed
update_a_bid_from_a_bid_package_v1_1 - First observed
update_a_bid_within_a_company - First observed
update_a_budgeted_production_quantity - First observed
update_a_change_event_status_v2_0 - First observed
update_a_change_event_type_v2_0 - First observed
update_a_change_order_change_reason_v2_0 - First observed
update_a_checklist_inspection_schedule - First observed
update_a_classification - First observed
update_a_company_action_plan_template - First observed
update_a_company_action_plan_template_v1_1 - First observed
update_a_compliance_document_project - First observed
update_a_compliance_document_project_v1_0 - First observed
update_a_coordination_issue_rest_v2_0_v2_0 - First observed
update_a_crew - First observed
update_a_delay_log_type - First observed
update_a_drawing_area - First observed
update_a_drawing_area_v1_1 - First observed
update_a_job_title - First observed
update_a_line_item_group_of_the_proposal_v2_0_company - First observed
update_a_line_item_group_of_the_proposal_v2_0_project - First observed
update_a_maintenance_record_project_v2_0 - First observed
update_a_maintenance_record_v2_0 - First observed
update_a_manual_forecast_line_item - First observed
update_a_manual_hold - First observed
update_a_note_of_the_project_v2_0_company - First observed
update_a_note_of_the_project_v2_0_company_v2_0 - First observed
update_a_pdf_template_config_company - First observed
update_a_pdf_template_config_company_v1_0 - First observed
update_a_permission_template_assignment_for_a_user_on_a_project - First observed
update_a_person - First observed
update_a_private_field_in_company_level_email_communication - First observed
update_a_private_field_in_email_communication - First observed
update_a_proposal_of_the_project_v2_0_company - First observed
update_a_proposal_of_the_project_v2_0_company_v2_0 - First observed
update_a_response - First observed
update_a_single_group - First observed
update_a_single_project - First observed
update_a_single_resource_request - First observed
update_a_task_item_comment - First observed
update_a_time_and_material_entry - First observed
update_a_time_and_material_equipment_log - First observed
update_a_time_and_material_notification - First observed
update_a_time_off_record - First observed
update_a_wbs_code - First observed
update_accident_log - First observed
update_action - First observed
update_action_plan - First observed
update_action_plan_item - First observed
update_action_plan_item_assignee - First observed
update_action_plan_section - First observed
update_action_plan_verification_method - First observed
update_actual_production_quantity - First observed
update_advance_ball_in_court - First observed
update_advance_ball_in_court_v1_1 - First observed
update_advanced_forecasting_rows_v2_0 - First observed
update_affliction_type - First observed
update_all_classification - First observed
update_all_company_segment_items - First observed
update_all_project_segment_items - First observed
update_an_equipment - First observed
update_an_equipment_make - First observed
update_an_equipment_model - First observed
update_an_equipment_type - First observed
update_an_estimate_line_item_of_the_proposal_v2_0_company - First observed
update_an_estimate_line_item_of_the_proposal_v2_0_project - First observed
update_an_project_equipment_log - First observed
update_app_configuration - First observed
update_app_installation - First observed
update_assignees_and_workflow_manager_company_v2_0 - First observed
update_assignees_and_workflow_manager_project_v2_0 - First observed
update_bid_board_project_custom_field_v2_0 - First observed
update_bid_board_project_v2_0 - First observed
update_bid_form - First observed
update_bid_form_v1_1 - First observed
update_bid_package - First observed
update_billing_period - First observed
update_bim_file - First observed
update_bim_level - First observed
update_bim_model - First observed
update_bim_model_revision - First observed
update_bim_plan - First observed
update_budget_line_item - First observed
update_budget_line_item_v1_1 - First observed
update_budget_modification - First observed
update_calendar_item - First observed
update_call_log - First observed
update_catalog_v2_0 - First observed
update_category_name - First observed
update_change_event - First observed
update_change_event_production_quantity - First observed
update_change_event_v1_1 - First observed
update_change_order_package - First observed
update_change_order_request - First observed
update_checklist - First observed
update_checklist_inspection - First observed
update_checklist_inspection_v1_1 - First observed
update_checklist_item - First observed
update_checklist_section - First observed
update_classification - First observed
update_commitment_change_order - First observed
update_commitment_change_order_batch - First observed
update_commitment_change_order_line_item_v2_0 - First observed
update_commitment_contract_line_item_v2_0 - First observed
update_commitment_contract_v2_0 - First observed
update_company_action_plan_template_item_assignee - First observed
update_company_action_plan_type - First observed
update_company_checklist_section - First observed
update_company_checklist_template - First observed
update_company_currency_configuration - First observed
update_company_exchange_rates - First observed
update_company_file - First observed
update_company_folder - First observed
update_company_form_template - First observed
update_company_inspection_template_item - First observed
update_company_insurance - First observed
update_company_office - First observed
update_company_patterns_segment_order - First observed
update_company_person - First observed
update_company_segment_item - First observed
update_company_tag - First observed
update_company_upload - First observed
update_company_upload_v1_1 - First observed
update_company_user - First observed
update_company_user_v1_1 - First observed
update_company_user_v1_2 - First observed
update_company_user_v1_3 - First observed
update_company_vendor - First observed
update_company_vendor_business_register - First observed
update_company_vendor_insurance - First observed
update_company_wbs_segment - First observed
update_company_webhooks_hook_v2_0 - First observed
update_companys_logo - First observed
update_concierge_parameters - First observed
update_configurable_field_set - First observed
update_context - First observed
update_contract_payment - First observed
update_contracts_invoice_configuration - First observed
update_contributing_behavior - First observed
update_contributing_condition - First observed
update_coordination_issue - First observed
update_coordination_issue_workflow_issue_v2_0 - First observed
update_cost_code - First observed
update_cost_item_v2_0 - First observed
update_current_project_company_v2_0 - First observed
update_current_project_company_v2_1 - First observed
update_current_project_project_v2_0 - First observed
update_current_project_project_v2_1 - First observed
update_custom_field - First observed
update_daily_construction_report_log - First observed
update_delay_log - First observed
update_deleted_equipment_serial_number - First observed
update_delivery_log - First observed
update_department - First observed
update_direct_cost_item - First observed
update_direct_cost_item_v1_1 - First observed
update_direct_cost_line_item - First observed
update_drawing - First observed
update_drawing_discipline_project - First observed
update_drawing_discipline_project_v1_0 - First observed
update_drawing_discipline_v1_1 - First observed
update_drawing_revision - First observed
update_drawing_set - First observed
update_drawing_v1_1 - First observed
update_dumpster_log - First observed
update_early_pay_program - First observed
update_environmental - First observed
update_equipment - First observed
update_equipment_attachment_company_v2_0 - First observed
update_equipment_attachment_project_v2_0 - First observed
update_equipment_category - First observed
update_equipment_category_company_v2_0 - First observed
update_equipment_company_v2_0 - First observed
update_equipment_company_v2_1 - First observed
update_equipment_log - First observed
update_equipment_maintenance_log - First observed
update_equipment_make_company_v2_0 - First observed
update_equipment_model_company_v2_0 - First observed
update_equipment_project_v2_0 - First observed
update_equipment_project_v2_1_company - First observed
update_equipment_project_v2_1_company_v2_1 - First observed
update_equipment_status_company_v2_0 - First observed
update_equipment_timecard_entry_project - First observed
update_equipment_type_company_v2_0 - First observed
update_existing_or_create_a_new_incident_alert_recipient - First observed
update_filing_type - First observed
update_form - First observed
update_forward_for_review - First observed
update_forward_for_review_v1_1 - First observed
update_generic_tool - First observed
update_generic_tool_item - First observed
update_generic_tool_item_response - First observed
update_group - First observed
update_group_order_rank - First observed
update_harm_source - First observed
update_hazard - First observed
update_image - First observed
update_image_category - First observed
update_incident - First observed
update_incident_action_type - First observed
update_incident_severity_level - First observed
update_information_of_a_budget_change - First observed
update_injury - First observed
update_inspection_log - First observed
update_inspection_type - First observed
update_instruction - First observed
update_instruction_type - First observed
update_item_response_set - First observed
update_layer - First observed
update_layer_order_rank - First observed
update_line_item_type - First observed
update_link - First observed
update_location - First observed
update_lookahead_task - First observed
update_manpower_log - First observed
update_material - First observed
update_meeting - First observed
update_meeting_attendee_record - First observed
update_meeting_category - First observed
update_meeting_topic - First observed
update_meeting_topic_v1_1 - First observed
update_meeting_v1_1 - First observed
update_monitoring_resource - First observed
update_multiple_time_and_material_entries - First observed
update_near_miss - First observed
update_notes_log - First observed
update_observation_item - First observed
update_payment_application_owner_invoice_for_prime_contract - First observed
update_payment_application_owner_invoice_line_item_for_prime - First observed
update_payment_application_owner_invoice_markup_line_item_for - First observed
update_payments_beneficiary_classification - First observed
update_plan_revision_log - First observed
update_potential_change_order - First observed
update_potential_change_order_line_item - First observed
update_prime_change_order - First observed
update_prime_change_order_batch - First observed
update_prime_contract - First observed
update_prime_contract_line_item - First observed
update_prime_contract_line_item_v2_0_project - First observed
update_prime_contract_line_item_v2_0_project_v2_0 - First observed
update_prime_contract_v2_0 - First observed
update_productivity_log - First observed
update_program - First observed
update_project - First observed
update_project_account - First observed
update_project_bid_type - First observed
update_project_checklist_template - First observed
update_project_currency_configuration - First observed
update_project_distribution_group - First observed
update_project_early_pay_programs - First observed
update_project_equipment_maintenance_log - First observed
update_project_exchange_rates - First observed
update_project_file - First observed
update_project_folder - First observed
update_project_incident_configuration - First observed
update_project_insurance - First observed
update_project_location - First observed
update_project_observation_type - First observed
update_project_owner_type - First observed
update_project_patterns_segment_order - First observed
update_project_payor_pays_setting - First observed
update_project_person - First observed
update_project_region - First observed
update_project_segment_item - First observed
update_project_stage - First observed
update_project_task_v2_0_company - First observed
update_project_task_v2_0_company_v2_0 - First observed
update_project_tools - First observed
update_project_type - First observed
update_project_upload - First observed
update_project_upload_v1_1 - First observed
update_project_user - First observed
update_project_vendor - First observed
update_project_vendor_insurance - First observed
update_project_vendor_v1_1 - First observed
update_project_webhooks_hook_v2_0 - First observed
update_property_damage - First observed
update_punch_item - First observed
update_punch_item_assignment - First observed
update_punch_item_type - First observed
update_punch_item_v1_1 - First observed
update_purchase_order_contract - First observed
update_purchase_order_contract_detail_line_item - First observed
update_purchase_order_contract_line_item - First observed
update_purchase_order_contract_subcontractor_sov_status - First observed
update_quantity_log - First observed
update_requisition_compliance_document_v2_0 - First observed
update_requisition_subcontractor_invoice - First observed
update_requisition_subcontractor_invoice_change_order_item - First observed
update_requisition_subcontractor_invoice_contract_detail_item - First observed
update_requisition_subcontractor_invoice_contract_item - First observed
update_requisition_subcontractor_invoice_v1_1 - First observed
update_requisition_subcontractor_invoice_whole_change_order_item - First observed
update_resource - First observed
update_resource_v1_1 - First observed
update_rfi - First observed
update_rfi_reply - First observed
update_rfq - First observed
update_rfq_quote - First observed
update_rfq_response - First observed
update_rounding_configuration - First observed
update_safety_violation_log - First observed
update_schedule_integration_type - First observed
update_schedule_metadata - First observed
update_specification_area_v2_1 - First observed
update_specification_configurations_v2_1 - First observed
update_stamp_v2_0 - First observed
update_standard_cost_code - First observed
update_standard_cost_code_list - First observed
update_status_of_equipment_company_v2_1 - First observed
update_status_of_equipment_project_v2_1 - First observed
update_sub_job - First observed
update_subcategory_name - First observed
update_submittal - First observed
update_submittal_approver - First observed
update_submittal_v1_1 - First observed
update_task - First observed
update_task_item - First observed
update_tax_code - First observed
update_tax_type - First observed
update_the_change_event_settings_for_the_project_v2_0 - First observed
update_the_compliance_information_for_a_purchase_order_contract - First observed
update_the_compliance_information_for_a_work_order_contract - First observed
update_the_due_date_for_a_requisition_subcontractor_invoice_v2_0 - First observed
update_the_state_of_a_daily_log_header - First observed
update_time_and_material_timecard - First observed
update_timecard_entries - First observed
update_timecard_entry - First observed
update_timecard_entry_company - First observed
update_timecard_entry_project - First observed
update_timecard_entry_signature_project - First observed
update_timecard_time_type - First observed
update_timeline_event_v2_0 - First observed
update_timesheet - First observed
update_timesheet_status - First observed
update_timesheet_to_budget_configuration - First observed
update_timesheet_v1_1 - First observed
update_todo - First observed
update_unit_of_measure - First observed
update_unmanaged_equipment_project_v2_0 - First observed
update_user_permission - First observed
update_user_project_roles - First observed
update_vendor_project_roles - First observed
update_viewpoint_mapping_and_or_model_manager_viewpoint_content - First observed
update_visitor_log - First observed
update_waste_log - First observed
update_wbs_attribute_item_v2_0 - First observed
update_wbs_attributes_v2_0 - First observed
update_weather_log - First observed
update_weather_log_v1_1 - First observed
update_webhooks_hook - First observed
update_witness_statement - First observed
update_work_activity - First observed
update_work_log - First observed
update_work_order_contract - First observed
update_work_order_contract_detail_line_item - First observed
update_work_order_contract_line_item - First observed
update_work_order_contract_subcontractor_sov_status - First observed
update_workflow_preset_company_v2_0 - First observed
update_workflow_preset_project_v2_0 - First observed
updates_a_company_inspection_template_item_evidence - First observed
updates_a_project_inspection_template_item_evidence - First observed
upload_schedule_file_v1_0 - First observed
upload_schedule_file_v1_0_2 - First observed
validate_custom_fields_values_with_configurable_field_set - First observed
validate_disbursement - First observed
validate_existing_disbursement - First observed
view_an_action_plan_test_record - First observed
view_bid_form_company - First observed
view_bid_form_project
TDQS
Each tool has a clearly distinct role: browse categories, search endpoints, get endpoint details, execute an API call, and read/write config. Even discover_endpoints and search_endpoints both return endpoints, but their descriptions frame them as browse vs. keyword lookup, so an agent should not misselect.
All tools share a procore_ snake_case prefix and most follow a verb_noun pattern (discover_categories, get_config, search_endpoints). The one outlier is procore_api_call, which reads as noun_noun rather than call_api, but it remains clear and does not create real confusion.
Seven tools is well-scoped for a generic API-access server: discovery, search, schema inspection, execution, and config get/set each earn their place. There is no redundancy and no obvious missing companion tool.
The tool set fully covers its stated discover -> detail -> call workflow, with search added for faster lookup and config tools for context switching. Since procore_api_call can reach every Procore endpoint, no dedicated per-resource tools are needed for the server's purpose.
Maintenance
Related MCP Connectors
The official Planning Center MCP server for interacting with your ministry's data.
A basic MCP server to operate on the Postman API.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
The official MCP Server for the Mux API
Related MCP Servers
- AlicenseNot gradedqualityNot gradedmaintenanceMCP server for Huntress API integration1MIT
- MIT
- AlicenseAqualityAmaintenanceMCP server for Huly (task tracker) integration61,39950MIT
- AlicenseBqualityDmaintenanceMCP Server for Git operations, agent templates, and project utilities.9115MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TylerIlunga/procore-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server